python 镜像安装库
时间: 2023-11-10 15:53:29 浏览: 140
镜像安装器
在使用Python时,我们需要安装各种第三方库来辅助我们编写代码。但是直接从官方网站下载可能速度较慢,这时可以使用国内的镜像来加速安装。
以pip为例,以下是一些常用的Python库镜像站点:
- 清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
- 阿里云:http://mirrors.aliyun.com/pypi/simple/
- 中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/
- 豆瓣:http://pypi.douban.com/simple/
我们可以在安装时通过以下方式指定镜像站点:
```
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ 库名
```
例如,要安装numpy库,可以使用以下命令:
```
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ numpy
```
这样就可以使用清华大学的镜像站点来加速安装numpy库了。
阅读全文