mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-23 00:18:20 +01:00
Fix wrong pytorch version on Linux+CPU
It was installing nvidia wheels
This commit is contained in:
parent
564a8c507f
commit
bb79037ebd
8
webui.py
8
webui.py
@ -87,8 +87,14 @@ def install_dependencies():
|
|||||||
elif gpuchoice == "b":
|
elif gpuchoice == "b":
|
||||||
print("AMD GPUs are not supported. Exiting...")
|
print("AMD GPUs are not supported. Exiting...")
|
||||||
sys.exit()
|
sys.exit()
|
||||||
elif gpuchoice == "c" or gpuchoice == "d":
|
elif gpuchoice == "c":
|
||||||
run_cmd("conda install -y -k ninja git && python -m pip install torch torchvision torchaudio", assert_success=True, environment=True)
|
run_cmd("conda install -y -k ninja git && python -m pip install torch torchvision torchaudio", assert_success=True, environment=True)
|
||||||
|
elif gpuchoice == "d":
|
||||||
|
if sys.platform.startswith("linux"):
|
||||||
|
run_cmd("conda install -y -k ninja git && python -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu", assert_success=True, environment=True)
|
||||||
|
else:
|
||||||
|
run_cmd("conda install -y -k ninja git && python -m pip install torch torchvision torchaudio", assert_success=True, environment=True)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
print("Invalid choice. Exiting...")
|
print("Invalid choice. Exiting...")
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
Loading…
Reference in New Issue
Block a user