[Tutor] i can't for the life of me get "#! /usr/bin/env python" or "#!/usr/bin/python" to work

Luke Paireepinart rabidpoobear at gmail.com
Thu Oct 22 00:12:47 CEST 2009


On Wed, Oct 21, 2009 at 4:56 PM, Jason Willis <chaoticslacker at gmail.com>wrote:

> so i changed the .bashrc and added at the end :
> PATH="/home/compy/pythons:$PATH"  ###which is the actual path to my python
> proggies###

No, you have to set the environment variable from within the path, not
modifying .bashrc.  $PATH refers to your current path.  If you're in, say
/temp/mystuff , and you set the environment variable from there, then it
will set PATH="/home/compy/pythons;/temp/mystuff"  but if you edit the file
directly it can't retrieve the value of $PATH (an envrionment varaible) so
it actually adds the value "$PATH" to your path, which probably doesn't
exist unless you mkdir $PATH and put your files in it and run it that way.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20091021/dd6793d4/attachment.htm>


More information about the Tutor mailing list