Skip to content

Commit 79ac0f3

Browse files
authored
Fix macOS pyenv instructions, add code block highlight (#441)
Fix: `anaconda3-latest` does not work, specify the correct virtualenv, add missing init.
1 parent 049ea02 commit 79ac0f3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README-Mac-MPS.md

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

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

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

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

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

5051
# OR,
5152
# 2. Installing standalone

0 commit comments

Comments
 (0)