You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running through the installation instructions, I'm at the point where we need to install the dependencies via pip using pip install -r requirements.txt.
By doing this, I receive the following error:
The conflict is caused by: The user requested urllib3==1.26.6 gradio 4.43.0 depends on urllib3~=2.0
It seems that this commit has forced urllib to be version 1.26.6 but it is incompatible with gradio==4.43.0.
I resolved this by changing the version to urllib3==2.2.3 but I wanted to confirm if this is intended, or if this is a bug that requires fixing.
The text was updated successfully, but these errors were encountered:
vi requirements.txt rewrite urllib3==1.26.6 ===>urllib3
reinstall will be ok.
Yes, by removing this, it's the same as setting the version to 2.2.3. I've mentioned this in my question. I wanted to ask if setting this to 1.26.6 with gradio 4.43.0 was intended. However, fixing the dependency for urrlib3 does allow everything to work.
Running through the installation instructions, I'm at the point where we need to install the dependencies via
pip
usingpip install -r requirements.txt
.By doing this, I receive the following error:
It seems that this commit has forced
urllib
to be version1.26.6
but it is incompatible withgradio==4.43.0
.I resolved this by changing the version to
urllib3==2.2.3
but I wanted to confirm if this is intended, or if this is a bug that requires fixing.The text was updated successfully, but these errors were encountered: