bark
bark copied to clipboard
the web UI to fail to launch
There are error messages that cause the web UI to fail to launch
Had the same error.
I changed line 83 in bark_infinity_installer_webui.py from
"pip install torchaudio==2.0.2+cu118 torch==2.0.1+cu118 torchvision --extra-index-url https://download.pytorch.org/whl/cu118",
to
"pip install torchaudio==2.1.2+cu118 torch==2.1.2+cu118 torchvision --extra-index-url https://download.pytorch.org/whl/cu118",
Now it works.
It seems that in torch 2.0.1 the compiler method does not exist.
You have to change the version of torchaudio aswell, otherwise you will run in compatibility issues
Thank you very much for your reply, it's working fine as per your method.
Thank you very much, tobiaserich!
Thanks, this actually fixed this issue we were having on our windows machine
FileNotFoundError: Could not find module 'C:\Python310\Lib\site-packages\torchaudio\lib\libtorchaudio.pyd' (or one of its dependencies). Try using the full path with constructor syntax. not sure why the previous version was failling to resolve although correctly installed.