记录一些 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
5、:wq保存退出