Last active
January 25, 2021 15:39
-
-
Save afahitech/0d11b89f2efdc1163c97cb47dd73b5ef to your computer and use it in GitHub Desktop.
Python-3.8.3 Install Linux
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/bash | |
| If you need installation help, contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: afahitech@gmail.com | |
| =========================================================== | |
| sudo -i | |
| cd /tmp | |
| wget https://www.python.org/ftp/python/3.8.3/Python-3.8.3.tgz | |
| tar -xvzf Python-3.8.3.tgz | |
| cd Python-3.8.3/ | |
| ./configure --enable-optimizations | |
| make | |
| make install | |
| python | |
| # Uninstall | |
| compgen -c python | |
| apt purge python* | |
| compgen -c python | |
| python | |
| #Python-3.8.3 | |
| #Using PPA | |
| sudo apt-get install software-properties-common | |
| sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa | |
| sudo apt-get update | |
| sudo apt install python3.8 | |
| python3 --version | |
| whereis python | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment