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 can pip install opencv-python without a hitch on my dev box, but am running into problems when setup.py's install_requires is trying to do it. I'm assuming the issue lies here, perhaps some of you are familiar with the error message?
Actual behaviour
Processing dependencies for autocrop==0.1
Searching for opencv-python
Reading https://pypi.python.org/simple/opencv-python/
No local packages or working download links found for opencv-python
error: Could not find suitable distribution for Requirement.parse('opencv-python')
Steps to reproduce
example code
setup(install_requires='opencv-python')
in my package's setup.py, when running python setup.py install
operating system
Manjaro Linux
architecture (e.g. x86)
x86
opencv-python version
Latest (any)
The text was updated successfully, but these errors were encountered:
Ah, that explains it, thanks. Using pip install . instead of python setup.py install seems clear now, but totally didn't at the time. The joys of Python packaging 😄
Expected behaviour
I can
pip install opencv-python
without a hitch on my dev box, but am running into problems whensetup.py
'sinstall_requires
is trying to do it. I'm assuming the issue lies here, perhaps some of you are familiar with the error message?Actual behaviour
Steps to reproduce
in my package's
setup.py
, when runningpython setup.py install
operating system
architecture (e.g. x86)
opencv-python version
The text was updated successfully, but these errors were encountered: