bark icon indicating copy to clipboard operation
bark copied to clipboard

the web UI to fail to launch

Open davia007 opened this issue 1 year ago • 4 comments

There are error messages that cause the web UI to fail to launch

735

davia007 avatar Jan 21 '24 06:01 davia007

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

tobiaserich avatar Jan 21 '24 15:01 tobiaserich

Thank you very much for your reply, it's working fine as per your method.

davia007 avatar Jan 22 '24 13:01 davia007

Thank you very much, tobiaserich!

prostobizon avatar Jan 28 '24 11:01 prostobizon

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.

builder-main avatar Jun 07 '24 12:06 builder-main