Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Bytexionl/76cc1bcad74d203dc2667aa585c9f402 to your computer and use it in GitHub Desktop.
Save Bytexionl/76cc1bcad74d203dc2667aa585c9f402 to your computer and use it in GitHub Desktop.
This Commands Will Install Multiple Python-3.11.x Into Ubuntu 22.04 LTS
# !/bin/sh
# Install Python 3 on Ubuntu From Source
sudo -i
apt update && apt upgrade -y
apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev
apt install build-essential checkinstall
apt autoremove
apt install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev
cd /opt
wget https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tgz
tar xzf Python-3.11.0.tgz
rm -f Python-3.11.0.tgz
cd Python-3.11.0
./configure --enable-optimizations
make altinstall
apt install python3-pip
cd
nano ~/.bashrc
# Add into the bottom
alias python=python3
alias pip=pip3
# Save & Exit ctrl+s and ctrl+x
alias python=python3
alias pip=pip3
source ~/.bashrc
sudo apt update
sudo apt upgrade -y
python --version
pip --version
# Install Python using PPA
sudo apt install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.12
# Switch Python version
update-alternatives --config python3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment