Fix TORCH_COMMAND check
This commit is contained in:
parent
2e172cf831
commit
ba077e2110
1 changed files with 1 additions and 1 deletions
2
webui.sh
2
webui.sh
|
@ -168,7 +168,7 @@ else
|
|||
gpu_info=$(lspci | grep VGA)
|
||||
if echo "$gpu_info" | grep -q "AMD"
|
||||
then
|
||||
if [ -z ${TORCH_COMMAND+x} ]
|
||||
if [[ -z "${TORCH_COMMAND}" ]]
|
||||
then
|
||||
export TORCH_COMMAND="pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/rocm5.2"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue