Opened 18 years ago

Closed 17 years ago

#3830 closed (fixed)

0.95 to 0.96 upgrade glitch under Mac OS X (10.4.9)

Reported by: ajstarks@… Owned by: Jacob
Component: Documentation Version: 0.96
Severity: Keywords: egg update mac
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

one 0.95->0.96 upgrade gotcha on Mac OS X:

the 0.95 installation created /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/Django-0.95-py2.3.egg.

This caused the 0.95 version to continue to be imported even after 0.96 was installed (in /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/django)

The workaround is to rename the egg:
cd /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages
sudo mv Django-0.95-py2.3.egg Django-0.95-py2.3.egg-

Attachments (1)

install.diff (505 bytes ) - added by Simon G. <dev@…> 17 years ago.

Download all attachments as: .zip

Change History (5)

comment:1 by Simon G. <dev@…>, 17 years ago

Triage Stage: UnreviewedAccepted

I've added an "upgrade" section to the install docs for this sort of thing as I assume there will be plenty of these sorts of things along soon :)

by Simon G. <dev@…>, 17 years ago

Attachment: install.diff added

comment:2 by Simon G. <dev@…>, 17 years ago

Has patch: set

comment:3 by Chris Beaven, 17 years ago

Triage Stage: AcceptedReady for checkin

Lets promote it for visibility :)

comment:4 by Russell Keith-Magee, 17 years ago

Resolution: fixed
Status: newclosed

(In [4999]) Fixed #3830 -- Added installation note on removing old versions of Django (especially eggs) before installing a new version.

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