pip install virtualenv
Usage
mkdir myproject
cd myproject
virtualenv foo
source foo/bin/activate
pip install hjson # install packages...
./foo/bin/python
import hjson
./foo/bin/python
import hjson
Getting pip if necessary
curl -o get-pip.py https://bootstrap.pypa.io/get-pip.py
python get-pip
yum install openssl openssl-devel
or
apt-get install openssl openssl-devel
References
https://pip.pypa.io/en/stable/installing/
http://docs.python-guide.org/en/latest/dev/virtualenvs/
Getting ssl if necessary in order to get pip on your linux box
symptom: ImportError: cannot import name HTTPSHandler
or
apt-get install openssl openssl-devel
References
https://pip.pypa.io/en/stable/installing/
http://docs.python-guide.org/en/latest/dev/virtualenvs/