qu4ntum
qu4ntum

Reputation: 329

How to install Django through subversion in Windows 7?

How do I install Django through subversion in Windows 7? I got SlikSVN installed right now, but I get an error when trying to run the command:

svn co https://code.djangoproject.com/svn/django/trunk/ django-trunk

svn: E160013: Unable to connect to a repository at URL 'https://code-djangoproject.com/svn/django/trunk'
svn: E160013: The path "/svn/django/trunk" doesn't exist

The link is probably not updated. But is there an updated link somewhere?

Upvotes: 0

Views: 346

Answers (1)

sk1p
sk1p

Reputation: 6725

Django is no longer using subversion, the new repository is hosted on github. You can access it via subversion, but I would recommend using git instead, or using a release tarball.

Upvotes: 1

Related Questions