On 3/22/06, Francisco Reyes <[EMAIL PROTECTED]> wrote:
>
> Julio Nobrega writes:
>
> >
> >   Is your project directory on your Python path? The easiest thing for
> > me is to ln it to site-packages.
>
> It wasn't. Thanks
>
> Maybe is my newbiness... but the install and tutorial docs seem like could
> use some changes. For instance just double-checked to make sure I had not
> missed it. I don't see where it mentions to create a symlink for each
> project.
>
> I did see and followed the instruction to setup the link for the global
> django source in the site-packages..
>
> Is there a "doc" list to send suggestions to?
>

For django, you can install it like common python module, just run:

python setup.py install

This will install django in python site-packages directory.

And your project can be existed in everywhere. Before you run the
server, you should use manage.py to run the server, it'll automatic
add DJANGO_SETTINGS_MODULE for you and also the PYTHONPATH. And if you
run on apache, you should configure the http.conf, and add your
project path to sys.path(see the mod_python.txt document)

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to