python通过镜像下载包
时间: 2023-06-02 14:05:38 浏览: 176
python中pip镜像下载
可以使用pip命令来通过镜像下载Python包,比如:
```
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名
```
其中,`https://pypi.tuna.tsinghua.edu.cn/simple` 是一个Python包使用的清华镜像站点,你可以根据需要使用其他镜像站点。
阅读全文
python中pip镜像下载