editing PATH variable on mac

如何在 mac (Lion)上编辑 PATH 变量。我找不到任何可以添加路径的文件。有人能指导我吗?

文件名是什么? . profile 还是. bash _ profile? ? ?

and where I can find it? 我试过了

echo 'export PATH=/android-sdk/tools:$PATH' >> ~/.profile
288296 次浏览

你可以试试这个:

  1. Open the Terminal application. It can be found in the Utilities directory inside the Applications directory.
  2. Type the following: echo 'export PATH=YOURPATHHERE:$PATH' >> ~/.profile, replacing "YOURPATHHERE" with the name of the directory 您想要添加。请确保使用“ > >”而不是“ >”。
  3. 按回车键。
  4. 关闭终端并重新打开。您的新终端会话现在应该使用新的 PATH。

引自 Me 教程(存档副本)

使用

~/.bash_profile

或者

~/.MacOSX/environment.plist

(见运行时配置指南)

根据我自己的经验和互联网搜索,我发现这些地方很有用:

/etc/paths.d

~/.bash_profile

注意,您应该打开一个新的终端窗口来查看更改。

你也可以参考这个 这个问题

environment.plst文件首先在 MAC 上加载,所以把路径放在它上面。

对于第一次使用,请使用以下命令

export PATH=$PATH: /path/to/set

使用任何文本编辑器打开和编辑 /etc/paths

$ sudo vi /etc/paths

(用 vi 编辑文本文件)

注意: 每个条目由一个新行分隔

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

保存并关闭文件。然后重新启动终端。