Opened 17 years ago
Last modified 17 years ago
#5626 closed
Mac OSX Permissions, command could be more succinct. — at Initial Version
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | terminal Mac OS X | |
Cc: | Triage Stage: | Design decision needed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
In the Mac OSX Permissions box (at the top of Creating a Project, currently misspelled as "Max OSX"), there is some text suggesting a possible permissions solution:
... To do this, open Terminal.app and navigate (using the cd command) to the directory where django-admin.py is installed, then run the command chmod +x django-admin.py .
|
This line could be made quicker and easier by replacing "and navigate... ." with "and run the command chmod +x `which django-admin.py`
." This removes the work involved in locating the installation directory, making it a little less painless, and makes the fix a one-step process. It will also guarantee that the correct django-admin.py
is modified.
Possible problem: Backticks can be difficult to recognize in some fonts, but monospace fonts usually show them correctly. The user will most likely copy and paste the command anyway, making this issue moot.
Fixes typo, shortens command to make django-admin.py executable