Skip to content

Instantly share code, notes, and snippets.

@xcsrz
Created May 13, 2022 15:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xcsrz/15c3d2509db3aada0d7c16bfb5b95f33 to your computer and use it in GitHub Desktop.
Save xcsrz/15c3d2509db3aada0d7c16bfb5b95f33 to your computer and use it in GitHub Desktop.
Install Python 3.9 on CentOS or Amazon Linux
#!/bin/sh
sudo yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel
cd /tmp
wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz
tar -xvf Python-3.9.6.tgz
cd Python-3.9.6
./configure --enable-optimizations
sudo make altinstall
python3.9 --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment