pysintaller的国内镜像源
时间: 2024-09-23 13:01:54 浏览: 30
PyInstaller的国内镜像源主要是为了在中国大陆加速Python包的下载速度,减轻国际网络访问的压力。常见的国内镜像源有以下几个:
1. 阿里云Python镜像:`https://mirrors.aliyun.com/pypi/simple/`
2. 清华大学开源软件镜像站:`http://pypi.tuna.tsinghua.edu.cn/simple/`
3. 百度云镜像:`http://npm.taobao.org/mirrors/pypi/`
4. CSDN开源镜像:`http://pypi.mirrors.csdn.net/simple/`
你可以通过修改pip配置文件`~/.pip/pip.conf`或临时命令行设置来使用这些镜像源。例如,添加以下内容到`pip.conf`:
```bash
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
```
或者在命令行运行:
```sh
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/
```
然后使用`pip install pyinstaller`应该会从指定的国内镜像源下载。
注意:每个镜像源的可用性和更新速度可能会有所不同,建议在遇到下载问题时尝试更换几个镜像源。
阅读全文