Skip to content

Commit

Permalink
Fix macOS pyenv instructions, add code block highlight (CompVis#441)
Browse files Browse the repository at this point in the history
Fix: `anaconda3-latest` does not work, specify the correct virtualenv, add missing init.
  • Loading branch information
Niek authored and lstein committed Sep 12, 2022
1 parent aac5102 commit aba94b8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/installation/INSTALL_MAC.md
Expand Up @@ -27,7 +27,7 @@ First get the weights checkpoint download started - it's big:

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

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

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

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

# OR,
# 2. Installing standalone
Expand Down

0 comments on commit aba94b8

Please sign in to comment.