看了很多文章关于jupyter notebook 安装报错ImportError: DLL load failed while importing win32api: 找不到指定的模块。
其中有:
1.重新安装pywin32的
2.装pypiwin32的
3.python虚拟环境文件中找到pywin32_postinstall.py文件,在{虚拟环境路径}\Scripts目录下。执行命令:python pywin32_postinstall.py -install
4.说安装包冲突的
https://blog.csdn.net/weixin_45834168/article/details/111307486
https://www.it1352.com/1749551.html
https://blog.csdn.net/qq_17328759/article/details/115207947
https://www.cnblogs.com/spx88/p/14140071.html
但不管是我的几个虚拟环境下都是说存在pywin32, 卸载重新安装jupyter也没有效果,试了很久
最终我在base下运行:
conda install -c anaconda pywin32
解决我的问题