1

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?

Siavash
  • 358
  • 1
  • 5
  • 19

2 Answers2

3

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.

Manfre
  • 1,235
  • 10
  • 10
Mark Lavin
  • 24,664
  • 5
  • 76
  • 70
  • How about somthing for Python 2.5? – Siavash Apr 09 '11 at 03: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` http://www.virtualenv.org/en/latest/ along with `pip` to keep your Python versions and packages separated. – Mark Lavin Apr 09 '11 at 12:27
0

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://bitbucket.org/Manfre/django-mssql/ django-mssql
Manfre
  • 1,235
  • 10
  • 10
Thierry Lam
  • 45,304
  • 42
  • 117
  • 144
  • I looked up Mercurial Repository Apps and ended downloading TortoiseSVN great SVN app, but still cant access googlecode – Siavash Apr 09 '11 at 03:49