Jim Gallacher
jg.lists at sympatico.ca
Wed Jul 27 13:07:26 EDT 2005
I've not used Django before (it was on my list of things to investigate), but I managed to install it on a Debian system using mod_python 3.1.4 without a problem. The one thing that was not clear from the django installation doc is that you need to run `django-admin.py startproject myproject` to create the project directory. If you don't run this command then you will get the import errors you describe. This is detailed in the django tutorial. Also FYI, mod_python will import modules from a symlinked directory just fine. Regards, Jim Dagur Pall Ammendrup wrote: > Hi, > > I've been trying to get Django working with mod_python but I've had no > luck so far. > > I made a topic about it on the django group > http://groups-beta.google.com/group/django-users/browse_thread/thread/3673f8e6cd813d3b/4dfe5bd3d1a3dbf3 > > > and someone suggested that I should ask you guys since it looks more > like a mod_python problem. > > The thing is that I have my project directory in sys.path (and it > appears if I try to print it out in a mod_python test page) but if I try > to import anything I'm told it doesn't exist. > > _______________________________________________ > Mod_python mailing list > Mod_python at modpython.org > http://mailman.modpython.org/mailman/listinfo/mod_python >
|