问题|ImportError: DLL load failed while importing _ssl: 找不到指定的模块 @Jupyter Notebook

目录

  • 问题描述
  • 解决方法

问题描述

背景:

  • Windows10的电脑中,完成Miniconda、Pycharm、Jupyter notebook安装后,打算启动 jupyter notebook 进行代码编写。
  • 在cmd中,输入一条如下命令:
jupyter notebook
  • 但报如下错误
Traceback (most recent call last):
  File "D:\AllApp\Miniconda3\Scripts\jupyter-notebook-script.py", line 6, in 
    from notebook.notebookapp import main
  File "D:\AllApp\Miniconda3\lib\site-packages\notebook\notebookapp.py", line 60, in 
    from tornado import httpserver
  File "D:\AllApp\Miniconda3\lib\site-packages\tornado\httpserver.py", line 29, in 
    import ssl
  File "D:\AllApp\Miniconda3\lib\ssl.py", line 98, in 
    import _ssl             # if we can't import it, let the error propagate
ImportError: DLL load failed while importing _ssl: 找不到指定的模块。

但是,在 Anaconda Prompt 窗口中输入同样的命令,可启动jupyter notebook。

具体:

  • cmd中报错:
    问题|ImportError: DLL load failed while importing _ssl: 找不到指定的模块 @Jupyter Notebook_第1张图片
  • Anaconda Prompt 中正常启动
    问题|ImportError: DLL load failed while importing _ssl: 找不到指定的模块 @Jupyter Notebook_第2张图片

解决方法

说明:

参考:https://www.cnblogs.com/ttrrpp/p/14260533.html

  • Miniconda 路径 …\Miniconda3\Library\bin 未添加到 Windows 系统环境变量中
  • 注:… 表示安装 Miniconda 的具体盘符路径

操作:

  • 打开任意一个文件夹,将鼠标放在 “此电脑” 上- 右键-点击“属性” → 点击“高级系统设置” → “环境变量” → 系统变量中的 “Path” → 添加路径(…\Miniconda3\Library\bin)
  • 注意:若之前 …\Miniconda3 和 …\Miniconda3\Scripts 没有添加到Path中,也需要将其添加。

如图:

  • 环境变量添加路径
    问题|ImportError: DLL load failed while importing _ssl: 找不到指定的模块 @Jupyter Notebook_第3张图片

  • 重新打开cmd,输入命令后可启动 jupyter notebook 浏览器
    问题|ImportError: DLL load failed while importing _ssl: 找不到指定的模块 @Jupyter Notebook_第4张图片
    问题|ImportError: DLL load failed while importing _ssl: 找不到指定的模块 @Jupyter Notebook_第5张图片

你可能感兴趣的:(异常,报错,jupyter)