Last active
February 8, 2019 00:19
-
-
Save iRhonin/c59ae5e39588bf7766c902a2263a6603 to your computer and use it in GitHub Desktop.
Setup Python3.6 Ubuntu 16 & 18
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
sudo apt-get install python3-dev | |
curl https://bootstrap.pypa.io/get-pip.py | sudo -H python3.6 | |
sudo -H pip3.6 install virtualenvwrapper | |
echo "export VIRTUALENVWRAPPER_PYTHON=`which python3.6`" >> ~/.bashrc | |
echo "source $(which virtualenvwrapper.sh)" >> ~/.bashrc | |
source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment