Created
February 19, 2018 14:13
-
-
Save barbietunnie/0f26219ab286e416ddcbf6aece4279d2 to your computer and use it in GitHub Desktop.
Install Python 3.6+ on Cloud 9 IDE
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
sudo apt-get install libssl-dev openssl | |
wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tgz | |
tar xzvf Python-3.6.4.tgz | |
cd Python-3.6.4.tgz | |
./configure | |
make | |
sudo make install | |
# Check if python 3.6 is installed | |
python3.6 | |
# If python 3.6 is not installed, run the command below | |
sudo ln -fs /opt/Python-3.6.4/Python /usr/bin/python36 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how do I make the runner start 3.81 as default ?