windows运行jupyter notebook报错ImportError: DLL load failed while importing _ssl: 找不到指定的模块

问题

C:\Users\DELL\Desktop\nlp>jupyter notebook
Traceback (most recent call last):
  File "C:\ProgramData\Anaconda3\Scripts\jupyter-notebook-script.py", line 6, in <module>
    from notebook.notebookapp import main
  File "C:\ProgramData\Anaconda3\lib\site-packages\notebook\notebookapp.py", line 60, in <module>
    from tornado import httpserver
  File "C:\ProgramData\Anaconda3\lib\site-packages\tornado\httpserver.py", line 29, in <module>
    import ssl
  File "C:\ProgramData\Anaconda3\lib\ssl.py", line 98, in <module>
    import _ssl             # if we can't import it, let the error propagate
ImportError: DLL load failed while importing _ssl: 找不到指定的模块。

解决方法

  • https://blog.csdn.net/cskywit/article/details/99202520
  • conda activate base

你可能感兴趣的:(windows,jupyter,ssl)