1.打开终端,输入:sudo vim ~/.bash_profile(执行root权限,当前用户的根目录下的.bash_profile)
2.然后在里面输入:export PATH=$PATH:/usr/local/mysql/bin
3.按ESC,然后输入::wq
4.source ~/.bash_profile(重新加载)
5.通过which命令验证:which mysql 输出:/usr/local/mysql/bin/mysql 则配置成功
但是,此方法在 MacOS Catalina 以后的版本都需要在每次打开终端后重新运行 source .bash_profile 命令,才能使用自己定义的环境变量。因此需要修改环境变量的设置路径,方法如下
首先,检查你的默认shell是什么,echo $SHELL。
"""
以前每个新用户的默认shell是/bin/bash,而新版本的macOS Catalina开始,新用户的默认shell改为了zsh.对于zsh,使用.zshrc
"""
1.打开终端,输入:sudo vim ~/.zshrc(执行root权限,当前用户的根目录下的.zshrc)
2.然后在里面输入:export PATH=$PATH:/usr/local/mysql/bin
3.按ESC,然后输入::wq
4.source ~/.zshrc(重新加载)
5.通过 which 命令验证:which mysql 输出:/usr/local/mysql/bin/mysql 则配置成功