记录一些 Mac上遇到一些问题:
电脑更新后,不知道怎么环境出现了一些问题, 想安装serve,自己打包后,启动服务,但是npm i serve -g ,就是报 command not found
source ~/.bash_profile 保存环境变量后没有生效
原因:zsh和bash有别, zsh模式不执行上述脚本,bash模式才执行
zsh、bash 模式互相切换
切换bash chsh -s /bin/bash
切换zsh chsh -s /bin/zsh
1、切换到bash
2、vim ~/.bash_profile
:wq
3、source ~/.bash_profile
1、进入主目录 cd ~
2、显示隐藏文件,找到.bash_profile文件夹 ls -a(如果没有可以只直接创建)
3、编辑文件 sudo vim .bash_profile
4、按i进入编辑模式,加入source ~/.bash_profile后,esc文章来源:https://www.toymoban.com/news/detail-799547.html
5、:wq保存退出文章来源地址https://www.toymoban.com/news/detail-799547.html
到了这里,关于Mac command not found的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!