安裝Python 3.10
簡介
在舊版Ubuntu安裝Python 3.10以及對應的pip版本。
安裝Python
藉由apt安裝,安裝後須注意python執行時的執行檔版本。
sudo apt update
sudo apt install -y software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install -y python3.10 python3.10-distutils
which python3.10
安裝pip
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10
No Comments