Python安装

Python 3.8 removed some stuff. I solved my problems with pip (specifically pip install) by installing pip with curl

What worked for me was:

cd ~/Downloads

Downloading get-pip.py

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

Then running it with python 3.8:

python3.8 get-pip.py

Solved it for me.