On 8/22/07, b3n <[EMAIL PROTECTED]> wrote:
>
> I did search but didn't find anything. Probably because the answer is
> too obvious...
>
> I checked out django using SVN but how do I do the next bit?
>
> "Symlink django_src/django so that django is within your Python site-
> packages directory, or update your PYTHONPATH to point to it."
>
> I'm using Windows XP. Do I simply create a Windows Environment
> Variable?
> If so, does the var point to the Python folder or the django folder,
> or what?
> e.g.
> PYTHONPATH = C:\django_src\django
>
> ???
>

My Django SVN checkout is in

C:\Documents and Settings\ramiro\django-trunk

it contains:
  django\
  docs\
  examples\
  ...

I have a C:\Python24\Lib\site-packages\django.pth
text file containing this line:

  C:\Documents and Settings\ramiro\django-trunk

(note it's the full path to the parent dir of the django dir).

Note you can follow more than one branch. e.g.
you have a SVN working copy of the newforms-admin branch
on D:\src\django-newforms-admin. You can edit
django.pth like this:

  #C:\Documents and Settings\ramiro\django-trunk
  D:\src\django-newforms-admin

doing so you are switching the django module
you import when you do from django.foo import blah

This is standard Python stuff, and is valid for every platform.

Regards,

-- 
 Ramiro Morales

--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to