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

国内镜像源

评论

This is just a placeholder img.