625
647

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacでPATHを通す

Last updated at Posted at 2015-03-07

MacにてPATHの通し方のメモ。

#設定ファイル
ホームディレクトリ直下にある設定ファイル.bash_profileに通したいPATHを記入する。

##設定ファイルの編集
ターミナルにて以下を実行

vi ~/.bash_profile

#PATHを通す
PATHを通すには.bash_profileに下記を記入する。

export PATH=$PATH:通したいPATH

例えば/Users/test/にPATHを通したい場合

export PATH=$PATH:/Users/test/

でOK。

##.bash_profileの更新
ターミナルを開き直すか、sourceコマンドで更新しないと反映されない。

source ~/.bash_profile

##PATHの確認
ターミナルに次のコマンドを打つと現在のPATHを確認できる。

printenv PATH

もしくは

echo $PATH

でもOK。
実行すると次のような文字列が帰ってくる。(『:』はPATHの区切り)
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Users/test/
目的のPATHがここに記載されていれば成功。

625
647
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
625
647

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?