Skip to content

Instantly share code, notes, and snippets.

@arthurazs
Created December 4, 2023 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arthurazs/1e1efded865a0f8094efb23959bb52eb to your computer and use it in GitHub Desktop.
Save arthurazs/1e1efded865a0f8094efb23959bb52eb to your computer and use it in GitHub Desktop.
Python 3.10 download, compile and install on Raspberry Pi
wget https://www.python.org/ftp/python/3.10.7/Python-3.10.7.tar.xz
tar -xf Python-3.10.7.tar.xz
cd Python-3.10.7/
./configure --enable-optimizations
sudo make altinstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment