使用pip3 安装cv2包的时候报错 PS C:\Users\lenovo> pip3 install cv2 Collecting cv2 Could not find a version that satisfies the requirement cv2 (from versions: ) No matching distribution found for cv2 解决方案: pip3 install opencv-python…
电脑上同时有python2 和python3,python2 里有cv2,Python3里没有. 用pip3 install opencv-python 安装,提示: You are using pip version 9.0.1, however version 10.0.1 is available.You should consider upgrading via the 'pip install --upgrade pip' command. 所以先升级pip3,但是提示这个命令没用,使…
问题:在windows命令窗口输入pip install cv2后出现:Could not find a version that satisfies the requirement cv2... 解决办法:换成以下命令: pip3 install opencv-python 答案地址:https://stackoverflow.com/questions/37776228/pycharm-python-opencv-and-cv2-install-error…