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

前端 未结 9 718
执笔经年
执笔经年 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 14:02

    A way to do this is to install Anaconda on your computer.

    Then you should be able to do:

    pip install opencv-python
    

    or

    conda install opencv
    

提交回复
热议问题