Forked from UbuntuEvangelist/How To Install Python Ubuntu 24.04 LTS
Created
January 18, 2024 17:51
-
-
Save hunterserror/ea262ccdb9fb5bcc10a2406561dc439c to your computer and use it in GitHub Desktop.
Install Python-3.11.0 Into Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !/bin/sh | |
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 | |
Session Outputs Videos Terminal Commands | |
######################################### | |
lsb_release -a | |
uname -a | |
whoami | |
w | |
python --version | |
pip --version | |
apt update -y | |
apt upgrade -y | |
apt update -y | |
update-alternatives --config python3 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment