From 7034d8f00973ddbbda9aae6c7026f0f1d43b3e99 Mon Sep 17 00:00:00 2001 From: ClashSAN <98228077+ClashSAN@users.noreply.github.com> Date: Sat, 15 Jul 2023 16:54:24 -0400 Subject: [PATCH] add section for installing 3.10 on linux --- Install-and-Run-on-NVidia-GPUs.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Install-and-Run-on-NVidia-GPUs.md b/Install-and-Run-on-NVidia-GPUs.md index 3cfe6c6..a4326bb 100644 --- a/Install-and-Run-on-NVidia-GPUs.md +++ b/Install-and-Run-on-NVidia-GPUs.md @@ -231,7 +231,23 @@ python3.10 -m venv venv (Red Hat-based) - sudo DND install git python3 -y && git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui && cd stable-diffusion-webui && ./webui.sh + sudo dnf install git python3 -y && git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui && cd stable-diffusion-webui && ./webui.sh + + + +
For Installing Python 3.10 + +Some distribution have older/newer system python versions than python 3.10. + +``` +cd stable-diffusion-webui + +sudo pacman -S pyenv +pyenv install 3.10.6 +pyenv local 3.10.6 + +python -m venv +```