“Could not find a version that satisfies the requirement opencv-python”

前端 未结 9 728
执笔经年
执笔经年 2020-12-05 13:34

I am struggling with Jetson TX2 board (aarch64).

I need to install python wrapper for OpenCV.

I can do:

$ sudo apt-get install python-opencv
         


        
9条回答
  •  执念已碎
    2020-12-05 13:45

    It happened with me on Windows, pip was not able to install opencv-python==3.4.0.12.

    Later found out that it was due to the Python version, Python 3.7 has some issue with not getting linked to https://github.com/skvark/opencv-python.

    Downgraded to Python 3.6 and it worked with:

    pip3 install opencv-python
    

提交回复
热议问题