I can't download django-mssql from Google Code there doesn't seem to be a direct download link and the svn wont work for me.

Anybody know a direct download link?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You can install the latest release from PyPi using pip install django-mssql or easy_install django-mssql. If you aren't using pip already then I would recommend you start.

Edit:

It's come to my attention that the PyPi release is not maintained by the author of django-mssql and is not always up to date. You can still install via pip from the source via pip install hg+https://django-mssql.googlecode.com/hg/#egg=django-mssql.

link|improve this answer
How about somthing for Python 2.5? – Siavash M Apr 9 '11 at 3:47
easy_install can install for a particular Python version if you have multiple installed using easy_install-2.5. It's best to use virtualenv virtualenv.org/en/latest along with pip to keep your Python versions and packages separated. – Mark Lavin Apr 9 '11 at 12:27
feedback

The source is under a mercurial repository. If you have a mercurial client installed, you can check it out with the following command:

hg clone https://django-mssql.googlecode.com/hg/ django-mssql
link|improve this answer
I looked up Mercurial Repository Apps and ended downloading TortoiseSVN great SVN app, but still cant access googlecode – Siavash M Apr 9 '11 at 3:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.