Trying to install geopy, found this entry on the old forums: http://forum.webfaction.com/viewtopic.php?id=996 Their solution:
My django install is on python 2.7. When I run the commands above, changing for 2.7, I get this error:
Any ideas? asked 11 Jul '11, 20:50 mtaylor |
Hi, The problem here is that your Django apps have django installed here: $HOME/webapps/appname/lib/python2.7/django So django doesn't exist in the path you are trying to install it. Once you fix that by changing the path or installing Django in $HOME/lib/python2.7 it should work no problem. answered 11 Jul '11, 21:27 klynton |
Durrr, solution: http://docs.webfaction.com/software/python.html#installing-packages-with-easy-install answered 12 Jul '11, 08:30 mtaylor |