Error when running start.bat after installing. #320

Closed
opened 2023-07-31 16:03:03 +00:00 by ThisFace · 2 comments

I followed the installation process:

  • Install latest Python & Git, CUDA.

Then I got to the point where I use setup-cuda.bat.

When I tried to use start.bat (or in cmd), it passed me these.

C:\Voice Cloning>call .\venv\Scripts\activate.bat
The system cannot find the path specified.

C:\Voice Cloning>set PATH=.\bin\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\NAT Service;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files\Bandizip\;C:\Program Files\dotnet\;C:\Program Files\Calibre2\;C:\Program Files\Git\cmd;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.0\;C:\Users\MyPC\AppData\Local\Microsoft\WindowsApps;

C:\Voice Cloning>set PYTHONUTF8=1

C:\Voice Cloning>python .\src\main.py
Python
C:\Voice Cloning>pause
Press any key to continue . . .
  • Windows 11
  • Python 3.11.4
  • Git 2.41.0
  • RTX 3090
  • CUDA V12.2.91

Edit: In the folder "venv," there is only a subfolder "Lib." There is no "Script" folder or activate.bat.

This is my first time ever on such site, or anything similar to it.
If I've made any mistakes or left out important info, please let me know.

I followed the installation process: - Install latest Python & Git, CUDA. Then I got to the point where I use setup-cuda.bat. When I tried to use start.bat (or in cmd), it passed me these. ``` C:\Voice Cloning>call .\venv\Scripts\activate.bat The system cannot find the path specified. C:\Voice Cloning>set PATH=.\bin\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\NAT Service;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files\Bandizip\;C:\Program Files\dotnet\;C:\Program Files\Calibre2\;C:\Program Files\Git\cmd;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.0\;C:\Users\MyPC\AppData\Local\Microsoft\WindowsApps; C:\Voice Cloning>set PYTHONUTF8=1 C:\Voice Cloning>python .\src\main.py Python C:\Voice Cloning>pause Press any key to continue . . . ``` - Windows 11 - Python 3.11.4 - Git 2.41.0 - RTX 3090 - CUDA V12.2.91 Edit: In the folder "venv," there is only a subfolder "Lib." There is no "Script" folder or activate.bat. This is my first time ever on such site, or anything similar to it. If I've made any mistakes or left out important info, please let me know.

Why are you using Python 3.11? It doesn't work.

Also why are you using CUDA V12?

How did you go about setting this up? I fear you deviated too much without realising the implications.

Python breaks compatibility with major apps/libraries just about every major version from my experience. And I knew these two already don't work for this.

Did you run python setup.bat install ?

Why are you using Python 3.11? It doesn't work. Also why are you using CUDA V12? How did you go about setting this up? I fear you deviated too much without realising the implications. Python breaks compatibility with major apps/libraries just about every major version from my experience. And I knew these two already don't work for this. Did you run `python setup.bat install` ?
Author

Why are you using Python 3.11? It doesn't work.

Also why are you using CUDA V12?

How did you go about setting this up? I fear you deviated too much without realising the implications.

Python breaks compatibility with major apps/libraries just about every major version from my experience. And I knew these two already don't work for this.

Did you run python setup.bat install ?

I'm really new to such programs that requires python or cmd, and I must have made a lot of mistakes.

For Python, CUDA, and Git for that matter, I just tried to download the latest release of them.
Should have I downloaded specific versions, such as 3.9 for Python and 11.7 for CUDA, as mentioned in the wiki?

I started by installing latest Python, Git, and CUDA as mentioned, and created folder directly on C: drive. (C:\Voice Cloning)

After that, I opened cmd and typed cd C:\Voice Cloning, and then git clone https://git.ecker.tech/mrq/ai-voice-cloning as mentioned in wiki.

Finally, I have ran setup-cuda.bat.

That is probably about everything I've done so far.

Should I uninstall everything and start from atop?

EDIT: I have reinstalled the requirements (Python 3.9.13, CUDA 11.7), and after adding Python to PATH, I was able to actually reach the generating site! I did get a CUDA out of memory error at the first time, but I at least made it generate 3 lines of sentence on the second try. At least this issue is resolved. Thanks!

> Why are you using Python 3.11? It doesn't work. > > Also why are you using CUDA V12? > > How did you go about setting this up? I fear you deviated too much without realising the implications. > > Python breaks compatibility with major apps/libraries just about every major version from my experience. And I knew these two already don't work for this. > > Did you run `python setup.bat install` ? I'm really new to such programs that requires python or cmd, and I must have made a lot of mistakes. For Python, CUDA, and Git for that matter, I just tried to download the latest release of them. Should have I downloaded specific versions, such as 3.9 for Python and 11.7 for CUDA, as mentioned in the wiki? I started by installing latest Python, Git, and CUDA as mentioned, and created folder directly on C: drive. (C:\Voice Cloning) After that, I opened cmd and typed `cd C:\Voice Cloning`, and then `git clone https://git.ecker.tech/mrq/ai-voice-cloning` as mentioned in wiki. Finally, I have ran setup-cuda.bat. That is probably about everything I've done so far. Should I uninstall everything and start from atop? EDIT: I have reinstalled the requirements (Python 3.9.13, CUDA 11.7), and after adding Python to PATH, I was able to actually reach the generating site! I did get a CUDA out of memory error at the first time, but I at least made it generate 3 lines of sentence on the second try. At least this issue is resolved. Thanks!
Sign in to join this conversation.
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: mrq/ai-voice-cloning#320
No description provided.