Opened 16 years ago

Closed 15 years ago

#6972 closed (fixed)

Cheese shop entry for django is broken

Reported by: Ionel Maries <ionel.mc@…> Owned by: nobody
Component: Uncategorized Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

still broken

> easy_install django

Searching for django
Reading http://www.pylonshq.com/download/
Reading http://pypi.python.org/simple/django/
Couldn't find index page for 'django' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
Reading http://pypi.python.org/simple/Django/
Reading http://www.djangoproject.com/
No local packages or download links found for django
error: Could not find suitable distribution for Requirement.parse('django')

As for the solution in http://code.djangoproject.com/ticket/3812 , same problem:

> easy_install django096
Searching for django096
Reading http://www.pylonshq.com/download/
Reading http://pypi.python.org/simple/django096/
Couldn't find index page for 'django096' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
Reading http://pypi.python.org/simple/Django096/
Reading http://djangoproject.com
Reading http://www.djangoproject.com/download/
No local packages or download links found for django096
error: Could not find suitable distribution for Requirement.parse('django096')

Change History (3)

comment:1 by Simon Greenhill, 16 years ago

Triage Stage: UnreviewedAccepted

comment:2 by eibaan, 16 years ago

As a workaround (at least on Linux/OSX) one can use

easy_install http://code.djangoproject.com/svn/django/tags/releases/1.0/

or

easy_install http://code.djangoproject.com/svn/django/trunk/

to download & install Django.

comment:3 by James Bennett, 15 years ago

Resolution: fixed
Status: newclosed

As of Django 1.0.1, easy_install django works. So does pip install django if you prefer pip.

Note: See TracTickets for help on using tickets.
Back to Top