How to Upgrade Django from 0.95 to Current Dev

2007-01-18 Thread johnny
I have right now 0.95, I would like to upgrade to current dev source. Is there a command I can issue to upgrade? If not what do I need to do? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: How to Upgrade Django from 0.95 to Current Dev

2007-01-18 Thread gordyt
Johnny I don't know what kind of Operating System you are using, but here is what I do on my Mac and Linux machines... I create a small script "checkout.sh" that contains the following: #!/bin/sh svn co http://code.djangoproject.com/svn/django/trunk/ Make it executable and run it. You will ne

Re: How to Upgrade Django from 0.95 to Current Dev

2007-01-18 Thread David Zhou
On Jan 18, 2007, at 4:46 PM, gordyt wrote: I create a small script "checkout.sh" that contains the following: #!/bin/sh svn co http://code.djangoproject.com/svn/django/trunk/ FYI, once you've checked out the repository, at any time, you can go into the django folder and type 'svn up' to s

Re: How to Upgrade Django from 0.95 to Current Dev

2007-01-18 Thread Jeremy Dunck
On 1/18/07, gordyt <[EMAIL PROTECTED]> wrote: ... Go to the site-packages directory in your Python installation and create a symbolic link to the django directory that you checked out. You'll want to delete the 0.95 egg in site-packages, too. I've recently heard of someone loading 0.95 even t