I'm going to deploy a django app on a shared hosting provider. I installed my own python in my home, it works fine. My promblem comes with the installation of PIL, i have no support for JPEG after the compile process.
I know that the compiler dont find "libjpeg", so i tried to install it at my home, i download the tar.gz and compile it with
./configure -prefix=$HOME/lib
make
make install
after i put the path in my.bashrc file.
After all i re-compile PIL and still no have the jpeg support.
It is possible to have the libs installed in a shared hosted enviroment? How would I do this?