Opened 12 years ago

Closed 12 years ago

#19307 closed Cleanup/optimization (invalid)

"Where are my site-packages?" section command line update for python 3

Reported by: robert.knights@… Owned by: nobody
Component: Documentation Version: 1.5-alpha-1
Severity: Normal Keywords: install python3
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

Under the Django installation section of the documentation:

Change
python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"
to
python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"

or create a note that this is necessary for python 3.

Perhaps this is not an issue as yet as python 3 support is experimental for v1.5... ?

Change History (1)

comment:1 by robert.knights@…, 12 years ago

Resolution: invalid
Status: newclosed

Oops - was looking at the 1.4 version of the documentation...

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