美文网首页
pip3 install jupyter

pip3 install jupyter

作者: butters001 | 来源:发表于2021-06-09 14:38 被阅读0次

pip3 install jupyter 安装完jupyter后 无法执行jupyter命令

zsh: command not found: jupyter

解决办法:

  1. 执行pip3 show jupyter

    image.png
    找到Location位置
  2. 编辑~/.zshrc
    添加上面找到的Location 3.8目录下的bin目录到环境变量

export PATH=/Users/xxxxxxx/Library/Python/3.8/bin/:$PATH
  1. 配置生效
source ~/.zshrc

相关文章

网友评论

      本文标题:pip3 install jupyter

      本文链接:https://www.haomeiwen.com/subject/lceeeltx.html