zsh: command not found: jupyterの対応
背景
新しいmacが支給されて、pip3 install jupyter
でjupyterをインストールし、ターミナルでjupyter notebook
と入力すると、zsh: command not found: jupyter
とエラーが返ってきました。
macOS Catalinaになってデフォルトのシェルがzshになり、pathを通さなければいけないとのこと。
やったこと
find ~/.zshrc
などでファイルがあるか確認、
なければtouch ~/.zshrc
でファイルを新規作成
Vim .zshrc
を開き、以下の1行を追記する
export PATH=$PATH:[追加したいディレクトリの絶対パス名]
export PATH=$PATH:$HOME/Library/Python/3.8/bin
esc、:wq
で .zshrcを閉じ、以下のコマンドでzshを再起動
source ~/.zshrc
参考
Author And Source
この問題について(zsh: command not found: jupyterの対応), 我々は、より多くの情報をここで見つけました https://qiita.com/nf2111/items/85a66867d10ae0c38625著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .