Mezzanine Debian Django Virtualenv Postgresql Install

mkdir ~/.virtualenvs sudo pip install virtualenv sudo pip install virtualenvwrapper This creates the directory in which your virtual environments will live, and can be any directory (hidden or not). The default is as above. The second step is to tweak your .bashrc file by adding the following: export WORKON_HOME=$HOME/.virtualenvs source …

pip virtualenv virtualenvwrapper osx install on mac

To install pip, virtual environment (virtualenv, virtualenvwrapper) on OS X, do the following on the command line: sudo easy_install pip sudo pip install virtualenv sudo pip install virtualenvwrapper   To enable the workon tab-completion feature, append the following to your profile file (located at ~/.profile): source /usr/local/bin/virtualenvwrapper.sh Create a directory …

Installing PIL in a virtualenv on Ubuntu 12.04

http://www.sandersnewmedia.com/why/2012/04/16/installing-pil-virtualenv-ubuntu-1204-precise-pangolin/ APR 16, 2012 The following technique should work for both 32-bit and 64-bit systems. Install the build dependencies: sudo apt-get build-dep python-imaging Symlink the libraries: sudo ln -s /usr/lib/x86_64-linux-gnu/libfreetype.so /usr/lib/ sudo ln -s /usr/lib/x86_64-linux-gnu/libjpeg.so /usr/lib/ sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/ Install: pip install PIL You should see something like …