PATHを通す
PATHを通す方法に関して
ls -la
で.bash_profile
があるか確認
mbp:~ **** $ ls -la
total 88
~ (省略) ~
-rw------- 1 **** staff 8387 5 6 19:31 .bash_history
-rw-r--r-- 1 **** staff 107 5 2 19:48 .bash_profile
~ (省略) ~
.bash_profile
がない場合はtouch .bash_profile
で作成
mbp:~ **** $ touch .bash_profile
.bash_profile
を編集する
// vimで開く
mbp:~ **** $ vi .bash_profile
vimでの編集方法
①vimに入ったら「i」を押して下に「insert」が出るのを確認する
ls -la
で.bash_profile
があるか確認mbp:~ **** $ ls -la
total 88
~ (省略) ~
-rw------- 1 **** staff 8387 5 6 19:31 .bash_history
-rw-r--r-- 1 **** staff 107 5 2 19:48 .bash_profile
~ (省略) ~
.bash_profile
がない場合はtouch .bash_profile
で作成mbp:~ **** $ touch .bash_profile
.bash_profile
を編集する// vimで開く
mbp:~ **** $ vi .bash_profile
②以下の内容を.bash_profile
に追記する
(ここではnodeのpathを通しています)
export PATH=$HOME/.nodebrew/current/bin:$PATH
export PATH=$PATH:/Users/****/.nodebrew/current/bin
③vimを閉じる
(英字の状態で)ESCを押してから、:wq
(その他vimを閉じる方法)
// 保存済みのファイルを開いているvimから抜ける
:q
// ファイルを保存しないでvimを抜ける
:q!
vimの編集が終わったら source ~/.bash_profile
で更新
// 更新
mbp:~ **** $ source ~/.bash_profile
// PATHが通っているか確認(今回はnodebrewのPATHを通したため)
mbp:~ **** $ nodebrew help
参考記事
Author And Source
この問題について(PATHを通す), 我々は、より多くの情報をここで見つけました https://qiita.com/tiger_taroo/items/d9b2af3399937c265192著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .