Last active
December 22, 2022 20:45
-
-
Save rinukkusu/8df7477387136f073954d1a163d9b398 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install Python 3.10 and replace original install | |
sudo add-apt-repository ppa:deadsnakes/ppa | |
sudo apt-get install -y python3.10 python3.10-dev python3.10-venv | |
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 2 | |
# Download and install SD | |
bash <(wget -qO- https://raw.githubusercontent.com/AUTOMATIC1111/stable-diffusion-webui/master/webui.sh) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment