python清华镜像源下载
时间: 2023-11-04 13:01:05 浏览: 858
清华镜像源是一个用于下载Python包和科学库的镜像服务器。你可以使用以下指令来从清华镜像源下载Python包:
pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple
请注意,你需要将“包名”替换为你想要下载的具体包的名称。同时,***
相关问题
python清华镜像源
清华大学开源软件镜像站提供了Python的镜像源,可以通过以下步骤配置:
1. 打开终端,进入/etc/apt/目录下,备份原来的sources.list文件
```
cd /etc/apt/
sudo cp sources.list sources.list.bak
```
2. 编辑sources.list文件,添加清华Python镜像源
```
sudo vim sources.list
```
在文件末尾添加以下内容:
```
# 清华Python镜像源
deb https://mirrors.tuna.tsinghua.edu.cn/python/ 宝塔版本 main
deb-src https://mirrors.tuna.tsinghua.edu.cn/python/ 宝塔版本 main
```
注意:将“宝塔版本”替换为你所使用的Ubuntu版本,例如Ubuntu 20.04对应的宝塔版本为focal。
3. 更新源并安装Python
```
sudo apt update
sudo apt install python3
```
现在你就可以使用清华Python镜像源来安装Python了。
python 清华镜像源安装
1. 打开终端,输入以下命令:
```
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
```
备份原来的源列表。
2. 输入以下命令,添加清华镜像源:
```
sudo nano /etc/apt/sources.list
```
3. 在编辑器中粘贴以下内容:
```
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
```
4. 按 Ctrl + X,然后按 Y,保存修改。
5. 输入以下命令,更新源列表:
```
sudo apt update
```
6. 安装任何软件包,例如:
```
sudo apt install python3
```
7. 等待安装完成,可以使用清华镜像源加速软件包的下载和安装。
阅读全文