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
Using Python 3.11, the dependencies in requirements.txt cannot be satisfied. Installation of requirements results in an error
ERROR: Cannot install -r requirements.txt (line 2) and numpy==1.20.0 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested numpy==1.20.0
pandas 1.3.5 depends on numpy>=1.21.0; python_version >= "3.10"
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
Relaxing the requirement of numpy==1.20.0 to numpy>=1.20.0 seems to fix the issue. However, I am unsure of whether this introduces any problems at runtime.
The text was updated successfully, but these errors were encountered:
Using Python 3.11, the dependencies in
requirements.txt
cannot be satisfied. Installation of requirements results in an errorRelaxing the requirement of
numpy==1.20.0
tonumpy>=1.20.0
seems to fix the issue. However, I am unsure of whether this introduces any problems at runtime.The text was updated successfully, but these errors were encountered: