desktop-ubuntu/python/python-3.11.sh

22 lines
377 B
Bash
Raw Normal View History

2023-06-18 15:34:39 +02:00
sudo apt update -y
sudo apt upgrade -y
sudo apt install -y \
software-properties-common
sudo add-apt-repository -y \
ppa:deadsnakes/ppa
sudo apt update -y
sudo apt install -y \
python3.11 \
python3.11-full
sudo ln -s `which python3.11` \
/usr/bin/python3 \
--force
curl -sS https://bootstrap.pypa.io/get-pip.py | sudo python3.11
python --version
pip --version