Created
March 31, 2020 02:27
-
-
Save tomjamescn/108fdbdc716d42b0105802c59e885b20 to your computer and use it in GitHub Desktop.
ubuntu/debian install python3.8
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 | |
set -e | |
sudo apt update | |
sudo apt install software-properties-common | |
sudo add-apt-repository ppa:deadsnakes/ppa | |
sudo apt install python3.8 python3-venv | |
# python3.8 -m venv myenv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment