python3安装cv2的命令以及解决安装第三方库时速度很慢的问题

pip3 install opencv-python

实质访问的下载网站是https://pypi.Python.org/simple/,这是一个国外网站,速度比较慢

如果使用国外的源下载速度慢,我们可以使用国内源提速:

  • 豆瓣源
    pip3 install opencv-python -i https://pypi.douban.com/simple
    
  • 清华大学源
    pip3 install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple
    

你可能感兴趣的:(Python)