Ubuntu20.04设置默认python、pip(软连接)并换源

Ubuntu20.04设置默认python、pip(软连接)并换源

  • Python
  • Pip
    • 1. 安装pip3
    • 2. 建立软连接
    • 3. 更换pip源
    • 4. 更新pip
    • 5. 卸载pip
    • 6. 使用pip
        • 6.1 pip安装软件包
        • 6.2 pip升级软件包
        • 6.3 pip卸载软件包
        • 6.4 pip列出已安装的软件包

Python

Ubuntu20.04 已经默认安装了 Python 3.8.2, 我们可以不用安装了:
在这里插入图片描述
由于每次使用python都需要输入python3,设置python默认打开python3:

sudo rm /usr/bin/python
sudo ln -s /usr/bin/python3 /usr/bin/python

在这里插入图片描述

Pip

pip是一个用来安装Python软件包的工具,由于Python 2已经退出了历史的舞台,Ubuntu20.04也移除了Python 2,所以不能够使用python-pip安装pip。

1. 安装pip3

sudo apt-get install python3-pip

当安装结束,检查pip版本:

pip3 --version

在这里插入图片描述

2. 建立软连接

由于每次使用pip都需要输入pip3,设置pip默认打开pip3:

sudo ln -s /usr/bin/pip3 /usr/bin/pip

Ubuntu20.04设置默认python、pip(软连接)并换源_第1张图片

3. 更换pip源

pip默认使用境外源,下载速度较慢且时而报错,我们可以更换为国内的pip源:

mkdir ~/.pip/
cd .pip
sudo apt-get install vim
sudo gedit pip.conf

将下列内容加入到pip.conf文件中:

[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

查看当前源:

pip config list

在这里插入图片描述
其他国内源:

# 清华源
https://pypi.tuna.tsinghua.edu.cn/simple
# 腾讯源
http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
http://pypi.douban.com/simple/

4. 更新pip

sudo pip install --upgrade pip

在这里插入图片描述

5. 卸载pip

sudo apt-get remove python3-pip

6. 使用pip

6.1 pip安装软件包

# 安装最新版本
pip install  package_name
# 安装指定版本
pip install package_name==version

也可以使用文本文件requirement.txt来安装软件包,它包含了运行pip软件包和它们的版本号。

# 生成requirement.txt文件
pip freeze > requirements.txt
# 从requirements.txt安装依赖库
pip install -r requirements.txt

报错:Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
解决:pip install -r requirements.txt --no-warn-script-location

6.2 pip升级软件包

pip install --upgrade package_name

6.3 pip卸载软件包

pip uninstall package_name

6.4 pip列出已安装的软件包

pip list

Ubuntu20.04设置默认python、pip(软连接)并换源_第2张图片

你可能感兴趣的:(python,python,ubuntu,pip)