Error installing dependecies (pip install -r requirements.txt)
Hello, Firstly thank you for reading and helping with my problem. I am trying to install dependencies (pip install -r requirements.txt) but keep bumping into the same errors - this being the first -
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'? [end of output]
and then also -
Can someone point me to the right direction? I am pretty new to this and cant seem to figure this out despite googling around.
Thank you again.
Are you sure you using python=3.10?
@wotori i tried that
you can hack this dependency by changing the requirements.txt.
change
jaxlib==0.4.14
to
jaxlib==0.4.19
For the implimporter, there's a similar error reported on stackoverflow:
https://stackoverflow.com/questions/77253684/pkgutil-impimporter-not-found-installing-pyaudio-on-python-3-12.
- use the command
virtualenv --upgrade-embed-wheels - upgrade venv with
pip install --upgrade virtualenv - Try creating a virtualenv with
--reset-app-dataparam.
@dukemagus it worked thank you
@dukemagus can you open a pull request updating that in the requirements file?