Created
September 22, 2014 13:37
-
-
Save uolter/5f82d423c941020ae3c8 to your computer and use it in GitHub Desktop.
venv_and_pip_centos.sh
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
curl https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py > get-pip.py; | |
python get-pip.py; | |
rm -f get-pip.py; | |
# change directory here. Go in your project home dir. | |
# cd /opt/uuid_resolver/; | |
pip install virtualenv; | |
virtualenv venv; | |
# activate the virtualenv | |
source venv/bin/activate | |
# change here your requirements.txt location | |
./venv/bin/pip install -r requirements.txt; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment