How to install pip in Ubuntu 22.04

  • 安装
apt install python3-pip
  • 配置

sudo mkdir -p /etc/pip
sudo touch /etc/pip/pip.conf
sudo tee /etc/pip/pip.conf <<-'EOF'
[global]
index-url=http://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=http://mirrors.aliyun.com/
EOF

这里,我们配置了pip的国内镜像源为阿里云镜像源。

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