想给jupter notebook换个皮肤,于是在shell里面安装,就有了以下错误:
zsh: command not found: pip
zsh: command not found: conda
之前bash pip和conda 都可以用,换成zsh了好多命令都用不了了,于是怀疑是zsh里没有环境变量,想到的解决方案是把 bash shell 中.bash_profile 全部环境变量加入zsh shell里。然而。。。
open .zshrc
既然没有,那就建一个吧,1.创建.zshrc文件
touch .zshrc
2.打开.zshrc文件并写入source .bash_profile
open .zshrc
command + S 保存。
3.terminal 再执行:
source .zshrc
啊,这。。。可能是整个文件都缺失的吧,下午再来解决。