Created
December 12, 2015 23:29
-
-
Save jleeothon/ccd798591c2cff1dc555 to your computer and use it in GitHub Desktop.
pyvenv for ubuntu (apparently it's broken in 14.04) in cloud9
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
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it is easier to use virtualenv
virtualenv --python=python3 env