Hello,
I’m encountering a dependency conflict when trying to install the dependencies listed in requirements.txt for your project. Specifically, there is a conflict related to the numpy version.
• The requirements.txt specifies numpy==1.23.5, but some packages require a version of numpy that is incompatible with this version.
• For example, onnxruntime-gpu==1.15.0 requires numpy>=1.24.2, and opencv-python==4.7.0.72 requires numpy>=1.17.0, depending on the Python version.
This causes the installation to fail because numpy==1.23.5 does not satisfy these requirements.
Steps to reproduce the issue:
1. Clone the repository.
2. Create a virtual environment.
3. Run pip install -r requirements.txt.
4. Observe the error related to the dependency conflict for numpy.
5. To resolve this issue, I suggest either:
Updating the numpy version in requirements.txt to numpy>=1.24.2 or a more flexible version range to ensure compatibility with the other dependencies.
Hello,
I’m encountering a dependency conflict when trying to install the dependencies listed in requirements.txt for your project. Specifically, there is a conflict related to the numpy version.
• The requirements.txt specifies numpy==1.23.5, but some packages require a version of numpy that is incompatible with this version.
• For example, onnxruntime-gpu==1.15.0 requires numpy>=1.24.2, and opencv-python==4.7.0.72 requires numpy>=1.17.0, depending on the Python version.
This causes the installation to fail because numpy==1.23.5 does not satisfy these requirements.
Steps to reproduce the issue:
1. Clone the repository.
2. Create a virtual environment.
3. Run pip install -r requirements.txt.
4. Observe the error related to the dependency conflict for numpy.
5. To resolve this issue, I suggest either:
Updating the numpy version in requirements.txt to numpy>=1.24.2 or a more flexible version range to ensure compatibility with the other dependencies.