回车后报错:
zsh: command not found
经过百度后,解决了,记录如下。
先配置.zshrc
文件
第一,同时按住cpmmand + shift + .
三键打开隐藏文件 :
image.png
找到.zshrc
, 如果没有就执行下面的操作
touch .zshrc
第二,创建完文件后,使用如下命令打开文件:
open -e .zshrc
第三,添加这段到第一行
source ~/.bash_profile
或者:
source /Users/用户名/.bash_profile
注意用户名
这里要换成你自己的访达中下面图标后面的名字。
第四,配置完成后,保存,关闭文件,然后在命令行中执行如下操作,刷新配置:
source .zshrc
再配置.bash_profile
文件
上述如果还不行就用下面的:不要输入后的信息提示
echo "alias python=/usr/bin/python3" >> ~/.zshrc
source ~/.zshrc
echo "alias python=/usr/bin/python3" >> ~/.bash_profile
source ~/.bash_profile
网友评论