Slight change to installation guide
In the installation guide for the SVN piece, you mention the use of PYTHONPATH. Why not go ahead and mention that instead of creating symlinks to the svn django bin location, just add the path to the user's PATH variable in their .bashrc:
i.e.
PYTHONPATH=/home/blackhatrob/source/svn/django_trunk:$PYTHONPATH
PATH=/home/blackhatrob/source/svn/django_trunk/django/bin:$PATH
export PYTHONPATH PATH
This way, you do not need any elevated privileges to download and develop django projects.
Change History
(3)
Owner: |
changed from nobody to blackhatrob
|
Status: |
new → assigned
|
Owner: |
blackhatrob removed
|
Status: |
assigned → new
|
Resolution: |
→ wontfix
|
Status: |
new → closed
|
We mention PYTHONPATH already. If people are comfortable working with environment variables, they know they can put them into
.bashrc
or.bash_profile
(the latter is preferable if you're appending to an environment variable so that subshells don't end up with one copy of the addition for each level of subshell, by the way).We can't cover every possible install option. We add this and somebody will ask what about tcsh? Or what about explicit windows instructions and so on. At some point, we have to assume some base level of knowledge and if you don't have that knowledge we provide one way to do the installation and Google and comp.lang.python and django-users will help with the rest.