opencv-python 换源
时间: 2023-10-08 10:06:51 浏览: 96
Python –pip换源
在使用 pip 安装 opencv-python 时,如果下载速度较慢或者无法连接到官方源,可以考虑更换镜像源:
1. 打开终端或命令行窗口,输入以下命令:
```
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
```
2. 安装 opencv-python:
```
pip install opencv-python
```
这样就可以使用阿里云的镜像源下载 opencv-python 了。如果还是无法下载,可以尝试其他镜像源,比如清华大学的镜像源:
```
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
阅读全文