Skip to main content

Upgrading to Python 3.11

This page will be deleted and is pretty much only for notes. 


sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.11-dev python3.11-full

# Create virtual env
python3.11 -m venv .env 
activate .env/bin/activate
pip install -r requirements.txt