#39;Jupyter#39; is not recognized as an internal or external command(Jupyter 未被识别为内部或外部命令)
问题描述
我通过 Anaconda 发行版安装了 python 和 jupyter notebook.我已经成功使用 jupyter notebook 数周了,它运行得非常好.但是,我只能通过 Anaconda Navigator GUI 启动笔记本.
I installed python and jupyter notebook through the Anaconda distribution. I have been successfully using jupyter notebook for weeks and it has run perfectly fine. However, I can only launch a notebook through the Anaconda Navigator GUI.
当我尝试运行命令(在命令提示符中)启动笔记本时,它会显示
When I try to run the command (in command prompt) to start a notebook it says
'jupyter' is not recognized as an internal or external command
Python也是如此
'python' is not recognized as an internal or external command
我使用的是 Windows 10.我假设它是 PATH 问题,但我对从其他帖子中找到的解决方案没有任何运气.我对编程和 python 比较陌生,所以任何帮助都将不胜感激.
I am using Windows 10. I am assuming its a PATH issue but I have not had any luck with the solutions I found from other posts. I am relatively new to programming and python so any help would be greatly appreciated.
推荐答案
是的,这也是我在安装Jupyter Notebook时遇到的问题.但我知道这个的解决方案.我希望,它也对你有用.
Yes, This is the problem which I faced also during the installation of Jupyter Notebook. But I know the solution of this. I hope, it also works for you as well.
- 打开cmd.
- 类型:
pip install notebook. - 如果您键入:
**jupyter notebook**- 它总是显示错误.李> - 所以,输入:
python -m notebook.
- Open cmd.
- Type:
pip install notebook. - If you Type:
**jupyter notebook**- it always shows an error. - So, Type:
python -m notebook.
图片显示正在运行 Jupyter Notebook
如果你觉得这个答案对你有用并且对你有用,我希望.所以,请为其他人按下向上按钮.这样他们也能得到一些帮助.
If you feel that this answer is useful and works for you, I expected. So, please press the Up Button for other peoples. So that they can also get some help.
这篇关于'Jupyter' 未被识别为内部或外部命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:'Jupyter' 未被识别为内部或外部命令
基础教程推荐
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
