在树莓派 pi3 中安装 pip

Installing pip in Raspberry pi3

抱歉,我是新手,当我尝试使用以下命令安装 pip 时

$ wget https://bootstrap.pypa.io/get-pip.py
$ sudo python get-pip.py

我收到以下错误

ERROR: This script does not work on Python 2.7 The minimum supported Python version is 3.6. Please use https://bootstrap.pypa.io/pip/2.7/get-pip.py instead.

请帮帮我

那么你有两个选择,要么使用 python3 要么使用

sudo apt install python3 -y
wget https://bootstrap.pypa.io/get-pip.py
sudo python3 get-pip.py

或者用python2安装:

wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
sudo python get-pip.py

但是如果你只想安装 pip 你可以这样做:

sudo apt install python3-pip -y

sudo apt install python-pip -y