Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency Conflict #7

Open
ForrestCKoch opened this issue Aug 29, 2024 · 0 comments
Open

Dependency Conflict #7

ForrestCKoch opened this issue Aug 29, 2024 · 0 comments

Comments

@ForrestCKoch
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant