我正在尝试安装jupyter notebook,但是当我运行jupyter/jupyter- notebook /jupyter notebook时,它显示命令找不到。我使用的是python 3.7,并且已经尝试了所有命令,比如:
pip install jupyter
pip3 install jupyter
python -m pip install jupter notebook
pip install --user jupyter
sudo pip install jupyter它显示了一个异常错误,我不知道为什么?
发布于 2021-10-27 05:01:46
您是否正在使用cmd进行安装?如果是,那么您需要使用以下命令安装经典的Jupyter Notebook:
pip install notebook然后,您可以使用以下命令运行:
jupyter notebook
jupyter-notebook
py -m jupyter notebook
py -m jupyter-notebook
python -m jupyter notebook
python -m jupyter-notebook这对我来说很好。如果你还有问题,请告诉我。
https://stackoverflow.com/questions/63465361
复制相似问题