On Fri, May 10, 2013 at 7:04 PM, Radomir Wojcik <[email protected]> wrote: > I was looking for the answer to this today and I wrote a tutorial on how to > do this based on all the stuff I found on the net: > > With the economy class Linux hosting its a bit tricky. For starters you > don't have root access to the site packages so you cannot install for > example MySQL-Python. > > 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 >
Are you not missing a step between 1) and 2), you need to activate the virtualenv, so that django (and all other libraries) are installed in the right place. Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

