diff --git a/webui-user.sh b/webui-user.sh index 8c29ffe1c..20f05b694 100644 --- a/webui-user.sh +++ b/webui-user.sh @@ -22,7 +22,7 @@ python_cmd="python3" venv_dir="venv" # install command for torch -export TORCH_COMMAND="python3 -m pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113" +export TORCH_COMMAND="pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113" # Requirements file to use for stable-diffusion-webui #export REQS_FILE="" diff --git a/webui.sh b/webui.sh index 3b2e8c3d5..cb00f8329 100644 --- a/webui.sh +++ b/webui.sh @@ -44,7 +44,7 @@ fi # install command for torch if [[ -z "${TORCH_COMMAND}" ]] then - export TORCH_COMMAND="python3 -m pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113" + export TORCH_COMMAND="pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113" fi # Do not reinstall existing pip packages on Debian/Ubuntu