mirror of
https://github.com/ParisNeo/lollms.git
synced 2025-04-05 09:59:08 +00:00
Update utilities.py
This commit is contained in:
parent
de39e5a86d
commit
ab5a195b40
@ -446,7 +446,14 @@ def install_cuda():
|
||||
result = conda.cli.main("install", "-c", "nvidia/label/cuda-12.3.2", "-c", "nvidia", "-c", "conda-forge", "cuda-compiler", "-y","--force-reinstall")
|
||||
except Exception as ex:
|
||||
ASCIIColors.error(ex)
|
||||
|
||||
|
||||
def install_cmake():
|
||||
import conda.cli
|
||||
try:
|
||||
ASCIIColors.info("Installing cmake") # -c nvidia/label/cuda-12.3.2 -c nvidia -c conda-forge
|
||||
result = conda.cli.main("install", "-c", "nvidia/label/cuda-12.3.2", "-c", "nvidia", "-c", "conda-forge", "cmake","-y","--force-reinstall")
|
||||
except Exception as ex:
|
||||
ASCIIColors.error(ex)
|
||||
|
||||
def reinstall_pytorch_with_cuda():
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user