Created
January 5, 2017 13:33
-
-
Save marktyers/0107bc60934900d35a2e9e309bd4bbe3 to your computer and use it in GitHub Desktop.
Revisions
-
marktyers created this gist
Jan 5, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ # setting up latest version of python on Ubuntu. # following line needed if not running 16.10+ sudo add-apt-repository ppa:jonathonf/python-3.6 sudo apt-get update sudo apt-get install python3.6 python3-pip nano ~/.bashrc # add the folling line to the end of ~/.bashrc alias python=python3.6 source ~/.bashrc python -V