Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我安装了 MacPorts(在管理员帐户中,Mac OS X 10.8.2),然后gnuplot通过它。但是在另一个帐户(没有管理员权限)中,我无法启动gnuplot或port从终端:
gnuplot
port
MacBook-Pro:~ user$ gnuplot -bash: gnuplot: command not found MacBook-Pro:~ user$ port -bash: port: command not found
到底是怎么回事。我需要做什么?
您只需要添加/opt/local/bin到您的$PATH.
/opt/local/bin
$PATH
这是通过将其添加到您的~/.profile:
~/.profile
export PATH=/opt/local/bin:/opt/local/sbin:$PATH export MANPATH=/opt/local/share/man:$MANPATH
这是在您安装 MacPorts 时完成的,但我猜不是对所有用户(您作为不同的用户安装它)。
我不知道为什么它不更新/etc/profile并使其成为全球性的,但如果您有该系统的多个用户,我建议您手动执行此操作。
/etc/profile