Anaconda prompt运行打开jupyter notebook 指令出错

一、打不开jupyter notebook网页

报错如下:

Traceback (most recent call last):

File "D:\anaconda3\lib\site-packages\notebook\traittypes.py", line 235, in _resolve_classes

klass = self._resolve_string(klass)

File "C:\Users\DELL\AppData\Roaming\Python\Python39\site-packages\traitlets\traitlets.py", line 2015, in _resolve_string

return import_item(string)

File "C:\Users\DELL\AppData\Roaming\Python\Python39\site-packages\traitlets\utils\importstring.py", line 33, in import_item

module = import (package, fromlist=[obj])

ModuleNotFoundError: No module named 'jupyter_server.contents'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):

File "D:\anaconda3\Scripts\jupyter-notebook-script.py", line 10, in

sys.exit(main())

File "C:\Users\DELL\AppData\Roaming\Python\Python39\site-packages\jupyter_core\application.py", line 283, in launch_instance

super().launch_instance(argv=argv, **kwargs)

File "C:\Users\DELL\AppData\Roaming\Python\Python39\site-packages\traitlets\config\application.py", line 1073, in launch_instance

app = cls.instance(**kwargs)

File "C:\Users\DELL\AppData\Roaming\Python\Python39\site-packages\traitlets\config\configurable.py", line 583, in instance

inst = cls(*args, **kwargs)

File "C:\Users\DELL\AppData\Roaming\Python\Python39\site-packages\traitlets\traitlets.py", line 1292, in new

inst.setup_instance(*args, **kwargs)

File "C:\Users\DELL\AppData\Roaming\Python\Python39\site-packages\traitlets\traitlets.py", line 1335, in setup_instance

super(HasTraits, self).setup_instance(*args, **kwargs)

File "C:\Users\DELL\AppData\Roaming\Python\Python39\site-packages\traitlets\traitlets.py", line 1311, in setup_instance

init(self)

File "D:\anaconda3\lib\site-packages\notebook\traittypes.py", line 226, in instance_init

self._resolve_classes()

File "D:\anaconda3\lib\site-packages\notebook\traittypes.py", line 238, in _resolve_classes

warn(f"{klass} is not importable. Is it installed?", ImportWarning)

TypeError: warn() missing 1 required keyword-only argument: 'stacklevel'

运行jupyter notebook的软件会出现闪退现象

二、尝试更新

1.更新 Jupyter 相关的模块:使用 Anaconda 自带的包管理器 conda 来更新 Jupyter 相关的模块,尤其是 jupyter_server。在 Anaconda Prompt 中运行以下命令来更新:

bash 复制代码
conda update jupyter_server

更新完运行还是报错

2.重新安装 Jupyter:

bash 复制代码
conda install jupyter

更新完运行还是报错

三、成功解决

感谢 http://t.csdnimg.cn/usTk8

运行以下命令解决问题:

bash 复制代码
pip uninstall traitlets
pip install traitlets==5.9.0

成功打开

四、重新修改一下默认保存路径

1.查找默认配置文件地址

运行win+r

输入jupyter notebook --generate-config

再输入y,回车

2.在文件资源管理中打开C:\Users\DELL\.jupyter\

用记事本打开,ctrl+f查找c.NotebookApp.notebook_dir ,删除注释,加入保存路径,保存

相关推荐
狐凄16 分钟前
Python实例题:基于 Python 的简单聊天机器人
开发语言·python
悦悦子a啊1 小时前
Python之--基本知识
开发语言·前端·python
笑稀了的野生俊3 小时前
在服务器中下载 HuggingFace 模型:终极指南
linux·服务器·python·bash·gpu算力
Naiva3 小时前
【小技巧】Python+PyCharm IDE 配置解释器出错,环境配置不完整或不兼容。(小智AI、MCP、聚合数据、实时新闻查询、NBA赛事查询)
ide·python·pycharm
路来了4 小时前
Python小工具之PDF合并
开发语言·windows·python
蓝婷儿4 小时前
Python 机器学习核心入门与实战进阶 Day 3 - 决策树 & 随机森林模型实战
人工智能·python·机器学习
AntBlack4 小时前
拖了五个月 ,不当韭菜体验版算是正式发布了
前端·后端·python
.30-06Springfield4 小时前
决策树(Decision tree)算法详解(ID3、C4.5、CART)
人工智能·python·算法·决策树·机器学习
我不是哆啦A梦4 小时前
破解风电运维“百模大战”困局,机械版ChatGPT诞生?
运维·人工智能·python·算法·chatgpt
WJ.Polar5 小时前
Python数据容器-list和tuple
开发语言·python