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 with NumPy 2.0 #1

Open
cvaisnor opened this issue Aug 2, 2024 · 0 comments
Open

Dependency conflict with NumPy 2.0 #1

cvaisnor opened this issue Aug 2, 2024 · 0 comments

Comments

@cvaisnor
Copy link

cvaisnor commented Aug 2, 2024

One of the dependencies in requirements.txt pulls in the latest version of NumPy, 2.0. I believe this conflicts with the MediaPipe module but not exactly sure.

On my fork, I make the virtual environment on the CLI and then have to downgrade NumPy manually.

My workflow:

python -m venv ugv-env

source ugv-env/bin/activate

pip install -r requirements.txt

Check the NumPy version:

pip list | grep numpy

It will likely display 2.0.0, we need to downgrade to 1.24.6 due to compatibility issues.

pip uninstall numpy

python -m pip install 'numpy==1.24.6'
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