Results 3 comments of Zaki_XL

This is a monkey patch. Please consider a permanent solution. \venv\Scripts\activate.bat ``` rem set PATH=%VIRTUAL_ENV%\Scripts;%PATH% set PATH=%VIRTUAL_ENV%\Scripts;%VIRTUAL_ENV%\Lib\site-packages\torch\lib;%PATH% set VIRTUAL_ENV_PROMPT=(venv) ``` In short, the problem is that the PATH set in...

If you want to debug this problem, it's a good idea to check the location of the cudart64_110.dll and exec `print(os.environ['PATH'])` .

This idea is better because it does not require modifying venv. gui.bat ``` @echo off :: Activate the virtual environment call .\venv\Scripts\activate.bat set PATH=%PATH%;%~dp0venv\Lib\site-packages\torch\lib :: Validate the requirements and store...