Opened 17 years ago

Closed 17 years ago

#5637 closed (fixed)

Python 2.5.1 users don't need to install sqlite neither pysqlite

Reported by: Márcio Moreira <arqeco@…> Owned by: Matt Boersma
Component: Documentation Version: dev
Severity: Keywords: sqlite
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

Friends,

I had a tough time trying to install django since I am on a Mac and had previously installed Python 2.5.1.

Well, Python 2.5.1 already comes with sqlite and doesn't need pysqlite anymore. I didn't knew that because I never needed to use sqlite (or sql) before trying to install Django.

Django install guide says that (if I choose sqlite as my database) I have to install sqlite and pysqlite.

So I tried...

To install sqlite on Mac you need to install apple developer tools (almost 1 Gb download) to have a compiler. Another surprise was when I discovered that sqlite comes preinstalled on Mac OS X 10.4 Tiger... So I tried to install pysqlite but, after many hours, I finally figured that I already had sqlite+pysqlite all the time (since I installed Python 2.5.1).

Well, I just ask you to say on http://www.djangoproject.com/documentation/install/ that you don't need to install sqlite neither pysqlite if you have installed Python 2.5.1 on your machine.

Thank you,
Márcio

Attachments (1)

5637.diff (770 bytes ) - added by Matt Boersma 17 years ago.
Clarifies SQLite support in Python 2.5

Download all attachments as: .zip

Change History (4)

comment:1 by Márcio Moreira <arqeco@…>, 17 years ago

by Matt Boersma, 17 years ago

Attachment: 5637.diff added

Clarifies SQLite support in Python 2.5

comment:2 by Matt Boersma, 17 years ago

Has patch: set
Owner: changed from nobody to Matt Boersma
Status: newassigned
Triage Stage: UnreviewedReady for checkin

comment:3 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: assignedclosed

(In [6559]) Fixed #5637 -- Clarified that nothing extra is required when using SQLite and
Python 2.5. Based on a patch from Matt Boersma.

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