Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

05.06 Install virtualenv

stuindhamma edited this page Jul 29, 2014 · 1 revision

Install virtualenv

sudo easy_install pip
sudo pip install virtualenv virtualenvwrapper

User Setup

For each user account that will be using virtualenv:

mkdir ~/.virtualenvs
echo 'export WORKON_HOME=$HOME/.virtualenvs' >> ~/.bashrc
echo "source `which virtualenvwrapper.sh`" >> ~/.bashrc
source ~/.bashrc
Clone this wiki locally