pip install opencv-python face_recognition使用清华镜像源
时间: 2024-09-24 22:15:37 浏览: 161
opencv-python-4.10.0.84.tar.gz
5星 · 资源好评率100%
在Python中,如果你想要通过pip安装`opencv-python`和`face_recognition`这两个库,并且想使用清华大学的镜像源以提高下载速度,你可以按照以下步骤操作:
首先,你需要确保已经安装了pip(Python包管理工具)。接下来,在命令行中输入以下命令,添加清华大学的apt源并更新它:
```bash
# 添加清华大学源
wget -qO- https://mirrors.tuna.tsinghua.edu.cn/pypi/simple/install-repository | sudo python3 -
```
然后,更新pip的源列表:
```bash
sudo pip3 install --upgrade pip
```
接着,使用清华大学源安装`opencv-python`:
```bash
pip3 install opencv-python --index-url http://pypi.tuna.tsinghua.edu.cn/simple/
```
安装`face_recognition`同样使用这个源:
```bash
pip3 install face_recognition --index-url http://pypi.tuna.tsinghua.edu.cn/simple/
```
请注意,由于国内网络限制,有时可能需要切换回默认源才能成功安装。如果上述步骤无法安装,可以尝试直接使用默认源:
```bash
pip3 install opencv-python face_recognition
```
阅读全文