Skip to content

Commit aba94b8

Browse files
Nieklstein
authored andcommitted
Fix macOS pyenv instructions, add code block highlight (invoke-ai#441)
Fix: `anaconda3-latest` does not work, specify the correct virtualenv, add missing init.
1 parent aac5102 commit aba94b8

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

docs/installation/INSTALL_MAC.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ First get the weights checkpoint download started - it's big:
2727

2828
While that is downloading, open Terminal and run the following commands one at a time.
2929

30-
```
30+
```bash
3131
# install brew (and Xcode command line tools):
3232
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
3333

@@ -42,9 +42,10 @@ While that is downloading, open Terminal and run the following commands one at a
4242
# 1. Installing alongside pyenv
4343

4444
brew install pyenv-virtualenv # you might have this from before, no problem
45-
pyenv install anaconda3-latest
46-
pyenv virtualenv anaconda3-latest lstein-stable-diffusion
47-
pyenv activate lstein-stable-diffusion
45+
pyenv install anaconda3-2022.05
46+
pyenv virtualenv anaconda3-2022.05
47+
eval "$(pyenv init -)"
48+
pyenv activate anaconda3-2022.05
4849

4950
# OR,
5051
# 2. Installing standalone

0 commit comments

Comments
 (0)