Skip to content

Instantly share code, notes, and snippets.

@jleeothon
Created December 12, 2015 23:29
Show Gist options
  • Save jleeothon/ccd798591c2cff1dc555 to your computer and use it in GitHub Desktop.
Save jleeothon/ccd798591c2cff1dc555 to your computer and use it in GitHub Desktop.
pyvenv for ubuntu (apparently it's broken in 14.04) in cloud9
# I use this script in cloud9
/usr/bin/python3 -m venv --without-pip env
source env/bin/activate
curl https://bootstrap.pypa.io/get-pip.py | python
deactivate
source env/bin/activate
Copy link

ghost commented Mar 19, 2016

it is easier to use virtualenv
virtualenv --python=python3 env

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment