views:

268

answers:

3

I'm a Windows user. I tried to install django-1.0.2 final through the command prompt and it kept giving me an error in line 70:

The error occured where u"SVN"... It couldn't get past that line.

Can anyone tell me what to do in order to be able to install django-1.0.2?

I'll be very grateful.

+3  A: 

You do not have SubVersion installed on your machine. You are trying to synchronize from the current production stream via SubVersion, which is a source control system, which you do not have installed.

Easiest solution - download the latest official version per the instructions at http://www.djangoproject.com/download/

Yuval A
+3  A: 

Please install a client for the Subversion Version Control System. Since you are on Windows, you can also use TortoiseSVN which is an easy to use SVN client for Windows.

Alternately, you can download the tarball of Django 1.0.2 directly.

And please don't SHOUT on Internet forums. We hear you :)

Baishampayan Ghose
A: 

If I recall correctly, installing TortoiseSVN won't help you there cause Django's code tries to use SVN's command line version.

Install a command-line SVN like:

bchhun