Python 3.8如何安装pip没有名为pip的模块

时间:2020-02-22 07:19:38

标签: python-3.x

系统:ubuntu 已经:python2.7 python3.5 python3.6

安装python3.8

pip install django
raise error No module named pip

我使用

wget https://bootstrap.pypa.io/get-pip.py
sudo python3.8 get-pip.py

失败

2 个答案:

答案 0 :(得分:1)

以下内容对我有用:

sudo apt update

Python3:sudo apt install python3-pip Python2:sudo apt install python-pip

答案 1 :(得分:0)

如果您的系统被引用为默认值(我猜是python 2),则必须指定要使用的python版本

$python3.8 -m pip install foo