Delete redundant backquotes

remove extra space
This commit is contained in:
冯不游 2022-09-18 13:21:43 +08:00
parent 27b238999f
commit c08eedf264

View File

@ -45,11 +45,11 @@ First get the weights checkpoint download started - it's big:
# NOW EITHER DO # NOW EITHER DO
# 1. Installing alongside pyenv # 1. Installing alongside pyenv
brew install pyenv-virtualenv # you might have this from before, no problem brew install pyenv-virtualenv # you might have this from before, no problem
pyenv install anaconda3-2022.05 pyenv install anaconda3-2022.05
pyenv virtualenv anaconda3-2022.05 pyenv virtualenv anaconda3-2022.05
eval "$(pyenv init -)" eval "$(pyenv init -)"
pyenv activate anaconda3-2022.05 pyenv activate anaconda3-2022.05
# OR, # OR,
# 2. Installing standalone # 2. Installing standalone
@ -69,19 +69,19 @@ curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o M
# continue from here # continue from here
# clone the repo # clone the repo
git clone https://github.com/lstein/stable-diffusion.git git clone https://github.com/lstein/stable-diffusion.git
cd stable-diffusion cd stable-diffusion
# #
# wait until the checkpoint file has downloaded, then proceed # wait until the checkpoint file has downloaded, then proceed
# #
# create symlink to checkpoint # create symlink to checkpoint
mkdir -p models/ldm/stable-diffusion-v1/ mkdir -p models/ldm/stable-diffusion-v1/
PATH_TO_CKPT="$HOME/Downloads" # or wherever you saved sd-v1-4.ckpt PATH_TO_CKPT="$HOME/Downloads" # or wherever you saved sd-v1-4.ckpt
ln -s "$PATH_TO_CKPT/sd-v1-4.ckpt" models/ldm/stable-diffusion-v1/model.ckpt ln -s "$PATH_TO_CKPT/sd-v1-4.ckpt" models/ldm/stable-diffusion-v1/model.ckpt
# install packages for arm64 # install packages for arm64
PIP_EXISTS_ACTION=w CONDA_SUBDIR=osx-arm64 conda env create -f environment-mac.yaml PIP_EXISTS_ACTION=w CONDA_SUBDIR=osx-arm64 conda env create -f environment-mac.yaml
@ -189,7 +189,7 @@ There are several causes of these errors.
- Third, if it says you're missing taming you need to rebuild your virtual - Third, if it says you're missing taming you need to rebuild your virtual
environment. environment.
````bash ```bash
conda deactivate conda deactivate
conda env remove -n ldm conda env remove -n ldm