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
I am trying to install the packages using pip install -r requirements.txt but ran into multiple dependency issues:
ERROR: Cannot install -r requirements.txt (line 88) and urllib3==1.26.19 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested urllib3==1.26.19
gradio 4.36.1 depends on urllib3~=2.0
then I remove the version specification of gradio and then tried install I got:
ERROR: Cannot install -r requirements.txt (line 12), -r requirements.txt (line 76), -r requirements.txt (line 79), -r requirements.txt (line 82), -r requirements.txt (line 87), -r requirements.txt (line 90), -r requirements.txt (line 92) and protobuf==3.20.3 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested protobuf==3.20.3
apache-beam 2.58.1 depends on protobuf!=4.0.*, !=4.21.*, !=4.22.0, !=4.23.*, !=4.24.*, <4.26.0 and >=3.20.3
google-api-core 2.19.0 depends on protobuf!=3.20.0, !=3.20.1, !=4.21.0, !=4.21.1, !=4.21.2, !=4.21.3, !=4.21.4, !=4.21.5, <5.0.0.dev0 and >=3.19.5
google-cloud-aiplatform 1.49.0 depends on protobuf!=3.20.0, !=3.20.1, !=4.21.0, !=4.21.1, !=4.21.2, !=4.21.3, !=4.21.4, !=4.21.5, <5.0.0dev and >=3.19.5
google-cloud-resource-manager 1.12.3 depends on protobuf!=3.20.0, !=3.20.1, !=4.21.0, !=4.21.1, !=4.21.2, !=4.21.3, !=4.21.4, !=4.21.5, <5.0.0dev and >=3.19.5
googleapis-common-protos 1.63.1 depends on protobuf!=3.20.0, !=3.20.1, !=4.21.1, !=4.21.2, !=4.21.3, !=4.21.4, !=4.21.5, <6.0.0.dev0 and >=3.19.5
grpc-google-iam-v1 0.13.0 depends on protobuf!=3.20.0, !=3.20.1, !=4.21.1, !=4.21.2, !=4.21.3, !=4.21.4, !=4.21.5, <5.0.0dev and >=3.19.5
grpcio-status 1.62.2 depends on protobuf>=4.21.6
Then I removed the version specification of protobuf and pip just fails at resolving a version for protobuf
I was wondering if you have any insights into this issue. Thank you very much!
The text was updated successfully, but these errors were encountered:
Hi,
I am trying to install the packages using
pip install -r requirements.txt
but ran into multiple dependency issues:then I remove the version specification of
gradio
and then tried install I got:Then I removed the version specification of
protobuf
and pip just fails at resolving a version forprotobuf
I was wondering if you have any insights into this issue. Thank you very much!
The text was updated successfully, but these errors were encountered: