We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 645e49f commit 354f8b8Copy full SHA for 354f8b8
src/gui.py
@@ -19,7 +19,7 @@ def set_cuda_paths():
19
try:
20
venv_base = Path(sys.executable).parent
21
nvidia_base_path = venv_base / 'Lib' / 'site-packages' / 'nvidia'
22
- for env_var in ['CUDA_PATH', 'CUDA_PATH_V12_2']:
+ for env_var in ['CUDA_PATH', 'CUDA_PATH_V12_1']:
23
current_path = os.environ.get(env_var, '')
24
os.environ[env_var] = os.pathsep.join(filter(None, [str(nvidia_base_path), current_path]))
25
logging.info("CUDA paths set successfully")
0 commit comments