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: | 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... ?
Note:
See TracTickets
for help on using tickets.
Oops - was looking at the 1.4 version of the documentation...