Last active
August 16, 2023 19:56
-
-
Save vbe0201/b85ec47bc198d1c8471acbf016922005 to your computer and use it in GitHub Desktop.
A script to install Python 3.7.2 on your Debian, Ubuntu or Mint server.
This file contains 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/bash | |
# | |
# A bash script for installing Python 3.7.2 on your Debian, Ubuntu or Mint server. | |
# (c) 2019 Valentin B. | |
# | |
# Open your terminal and enter the following command: | |
# wget https://gist.github.com/vbe0201/b85ec47bc198d1c8471acbf016922005/raw/get-python.sh && chmod +x get-python.sh && ./get-python.sh | |
apt update -y | |
apt upgrade | |
apt install build-essential checkinstall libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev -y | |
mkdir python_installation && cd python_installation | |
wget https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tgz | |
tar xzvf Python-3.7.2.tgz | |
rm -f Python-3.7.2.tgz | |
cd Python-3.7.2 | |
./configure --enable-optimizations | |
make -j 4 | |
make altinstall | |
cd ../.. | |
rm -rf python_installation | |
apt --purge remove build-essential checkinstall libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev -y | |
apt autoremove -y | |
apt clean | |
python3.7 -m pip install -U pip | |
echo '$alias pip3="python3.7 -m pip"' >> ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment