SortAnon / ControllableTalkNet

A web app that lets you play around with TalkNet models
GNU Affero General Public License v3.0
121 stars 48 forks source link

Lots of errors during setup #6

Open trialtest-dev opened 2 years ago

trialtest-dev commented 2 years ago

I've been running into a ton of issues when running setup.bat on my Windows 10 laptop. I think I fixed the initial issues ("io.h not found", "error cannot open file 'kernel32.lib'") by setting up environment variables, but now there's constant errors that seem to appear when attempting to build a wheel.

Here are what's currently installed in my VS BuildTools Development w/ C++:

image

Here are the environment variables I've added to fix the "can't find file" issues:

image

Here's a preview of my current error that repeatedly happens before aborting (it's waaaay longer than this):

image image image

Here's a link to the entirety of what my console says:

https://pastebin.com/th0VLJz9

I'm probably an idiot and might not have installed something properly, since I don't have any knowledge of python, c++, or errors in general, but I would appreciate any pointers that could help me fix these issues and run your webapp offline. Thank you!

g-l-i-t-c-h-o-r-s-e commented 2 years ago

Try this running this as a bat in the same folder as talknet.bat :p

"%~dp0miniconda\python.exe" -m pip uninstall -y numpy
"%~dp0miniconda\python.exe" -m pip install numpy==1.19.5
"%~dp0miniconda\python.exe" -m pip --no-cache-dir install --no-build-isolation --no-binary :all: pesq==0.0.2
pause

also mentioned here: https://gist.github.com/SortAnon/49ae78ad7346fd9dcb54322001c2dd9a

trialtest-dev commented 2 years ago

Try this running this as a bat in the same folder as talknet.bat :p

"%~dp0miniconda\python.exe" -m pip uninstall -y numpy
"%~dp0miniconda\python.exe" -m pip install numpy==1.19.5
"%~dp0miniconda\python.exe" -m pip --no-cache-dir install --no-build-isolation --no-binary :all: pesq==0.0.2
pause

also mentioned here: https://gist.github.com/SortAnon/49ae78ad7346fd9dcb54322001c2dd9a

Unfortunately I tried both, and it seems like I got similar error logs when it gets to installing pesq.

https://pastebin.com/z8wKWXEE https://pastebin.com/txN7AJ2q