Solutions Log

So I only have to figure things out once.

Things You Probably Want to Install to Get the Most Out of Django

libjpeg (for PIL)

curl -O http://www.ijg.org/files/jpegsrc.v6b.tar.gz
tar zxvf jpegsrc.v6b.tar.gz
cd jpeg-6b/
./configure
make
sudo make install-lib

Python Image Library (PIL)

curl -O http://effbot.org/media/downloads/Imaging-1.1.6.tar.gz
tar zxvf Imaging-1.1.6.tar.gz 
cd Imaging-1.1.6
sudo python setup.py install

Python Markdown library

curl -O http://pypi.python.org/packages/source/M/Markdown/markdown-1.7.tar.gz
tar zxvf markdown-1.7.tar.gz
cd markdown-1.7
sudo python setup.py install

See also.

Docutils

This makes Django’s built-in admin documentation work.

curl -O http://docutils.sourceforge.net/docutils-snapshot.tgz
tar zxvf docutils-snapshot.tgz
cd docutils
sudo python setup.py install

Sources

Comments