After installing with pip, “jupyter: command not found”

前端 未结 24 1136
名媛妹妹
名媛妹妹 2020-12-04 06:35

After installing with pip install jupyter, terminal still cannot find jupyter notebook.

Ubuntu simply says command not found

24条回答
  •  星月不相逢
    2020-12-04 07:04

    Most generally (in case of jupyter not being in /local/bin) use,

    which jupyter
    

    Example output

    ~/miniconda3/bin/jupyter
    

    to see the path for jupyter, then explicitly use that path with sudo

    sudo ~/miniconda3/bin/jupyter 
    

提交回复
热议问题