35
32

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.

PATHの通し方

Posted at

(環境 OS X 10.8.3)
ユーザー単位でなく、まるっと設定するやり方(らしい)

$ sudo vi /etc/paths

するとこんな感じで表示される.

/usr/bin
/bin
/usr/sbin
/sbin
/usr/local/bin

いじってなければこれがデフォ

上のものから優先されるので、僕がrubyを入れる際必要だったのは/usr/local/binを優先させることだったので

/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin

以上の用に修正.
viは"i"を押して編集モード、"escキー"で抜けて":wq"で上書き&終了さえ覚えてれば最低限のことはできるはずです.

確認のため

$ echo $PATH

で編集した通りの順になってればいいと思います.

pathsのやつ以外にPATHに追加されてるものもあったんですがいらんのはどうやって消せば…

35
32
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
35
32

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?