/usr/local/bin is not in your PATH.

安装brew提示/usr/local/bin is not in your PATH.

或者安装node后提示node: command not found


解决方法:修改环境变量配置文件

在Linux操作系统下,配置环境变量是使用如下命令:

vim /etc/profile

在OSX下,我们用如下命令打开环境变量配置文件:

open ~/.bash_profile

添加:export PATH=/usr/local/bin:$PATH

source ~/.bash_profile #更新配置后的环境变量

你可能感兴趣的:(/usr/local/bin is not in your PATH.)