bashrc & zshrc: Add $HOME/.local to $PATH.

1. "python setup.py install --user" installs to .local.
2. Run command "ls /usr/local && ls ~/.local" and compare the two lines.

Output of the second command is
> bin  etc  games  include  lib  man  sbin  share  src
> share
for me.
This commit is contained in:
Mika Suomalainen 2012-03-31 17:43:49 +03:00
parent e21ac92020
commit 44ea2c5d89
2 changed files with 2 additions and 2 deletions

2
bashrc
View File

@ -169,7 +169,7 @@ fi
#export TZ="/usr/share/zoneinfo/Europe/Helsinki"
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
PATH=$PATH
PATH=$PATH:$HOME/.local/bin
# Sets web-browser.
#export BROWSER=lynx

2
zshrc
View File

@ -95,7 +95,7 @@ fi
#export TZ="/usr/share/zoneinfo/Europe/Helsinki"
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
PATH=$PATH
PATH=$PATH:$HOME/.local/bin
# Sets web-browser.
#export BROWSER=lynx