opencv2国内镜像源
时间: 2023-09-30 12:06:46 浏览: 160
国内常用的OpenCV镜像源包括:
1. 清华大学镜像源:https://mirrors.tuna.tsinghua.edu.cn/opencv/
2. 中科大镜像源:https://mirrors.ustc.edu.cn/opencv/
3. 华为镜像源:https://mirrors.huaweicloud.com/opencv/
4. 阿里云镜像源:https://opsx.alibaba.com/mirror?mirror_id=201
你可以根据自己的需要选择其中一个镜像源进行下载和安装。注意,镜像源可能会有不同的更新频率和稳定性,请根据实际情况选择使用。
相关问题
opencv清华镜像源
你可以使用以下命令将清华大学的镜像源添加到OpenCV中:
```shell
pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple
```
这将使用清华大学的镜像源来安装OpenCV。这样做可以加快下载速度,特别是在中国地区。
pycharm 安装opencv 通过国内镜像
可以通过以下步骤来通过国内镜像安装OpenCV:
1. 打开PyCharm,创建一个新的Python项目。
2. 在PyCharm的Terminal中输入以下命令:
```
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
```
这将使用清华大学的镜像源安装OpenCV。
3. 等待安装完成后,可以在PyCharm中导入OpenCV并开始使用它。
注意:如果您使用的是Python 3版本,则需要使用以下命令安装:
```
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
```
阅读全文