diff --git a/CMD_FLAGS.txt b/CMD_FLAGS.txt index e69de29b..47fe8405 100644 --- a/CMD_FLAGS.txt +++ b/CMD_FLAGS.txt @@ -0,0 +1 @@ +--listen diff --git a/webui.py b/webui.py index aaa77885..4225cd7e 100644 --- a/webui.py +++ b/webui.py @@ -122,7 +122,7 @@ def install_dependencies(): # Install Pytorch if gpuchoice == "a": - run_cmd('conda install -y -k cuda ninja git -c nvidia/label/cuda-11.7.0 -c nvidia && python -m pip install torch==2.0.1+cu117 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117', assert_success=True, environment=True) + run_cmd('conda install -y -k ninja git && python -m pip install torch==2.0.1+cu117 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117', assert_success=True, environment=True) elif gpuchoice == "b" and not is_macos(): if is_linux(): run_cmd('conda install -y -k ninja git && python -m pip install torch==2.0.1+rocm5.4.2 torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.4.2', assert_success=True, environment=True)