Skip to content

Instantly share code, notes, and snippets.

@iRhonin
Last active February 8, 2019 00:19
Show Gist options
  • Save iRhonin/c59ae5e39588bf7766c902a2263a6603 to your computer and use it in GitHub Desktop.
Save iRhonin/c59ae5e39588bf7766c902a2263a6603 to your computer and use it in GitHub Desktop.
Setup Python3.6 Ubuntu 16 & 18
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