国内快速安装python的三方库
解决python第三方库安装很慢的问题
pip install + 包名 -i + 国内镜像源地址
pip install -i + 国内镜像源地址 +包名
例如:
openCV(cv2库)安装:
- 官方安装:
pip install opencv-python
- 使用其他源安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ opencv-python
Tensorflow安装:
- 官方安装:
pip install tensorflow
- 使用其他源安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ tensorflow
官方镜像源
https://pypi.python.org/simple