一時的にコマンドラインからPATHに追加する
PATH=”$HOME/.local/bin:$PATH”
起動時に自動的に読み込む
vi ~/.profile
set PATH so it includes user’s private bin if it exists
if [ -d “$HOME/.local/bin” ] ; then
PATH=”$HOME/.local/bin:$PATH”
fi
source ~/.profile
パスの確認
echo $PATH
PATH=”$HOME/.local/bin:$PATH”
vi ~/.profile
set PATH so it includes user’s private bin if it exists
if [ -d “$HOME/.local/bin” ] ; then
PATH=”$HOME/.local/bin:$PATH”
fi
source ~/.profile
echo $PATH
コメント