help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Changing $PATH in eshell, in a bash-like behaviour


From: Stefan Monnier
Subject: Re: Changing $PATH in eshell, in a bash-like behaviour
Date: Wed, 08 Dec 2010 15:24:34 -0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

eshell> which python
> /usr/bin/python
eshell> # path modification
eshell> echo $PATH # or getenv PATH
> /abs/path/to/hello/bin:/bin:/usr/bin:...
eshell> which python
> /usr/bin/python

You probably want to modify `exec-path' at the same time as you
modify $PATH.  What you see as $PATH is part of `process-environment',
i.e. the environment to use for subprocesses, but not for Emacs itself.


        Stefan


reply via email to

[Prev in Thread] Current Thread [Next in Thread]