In case you want to use Django framework in Godaddy’s Linux Economy Host, here is the steps:
1. Godaddy has virtualenv installed, so first, create a virtual environment venv: (I use $HOME/lib/ for all the installed stuff below)
cd ~/ mkdir lib cd lib virtualenv --no-site-packages venv
The python package folder is $HOME/lib/venv/lib/python2.7/site-packages
2. Install the latest Django through pip
pip install Django