なぜか新しいパソコンでjupyter notebookが立ち上がらなかったのでメモ。
条件
条件と症状はつぎのとおり。
- Anacondaを使用。仮想環境でpython3.8。
- pip install notebook jupyterなどでjupyter notebookをインストール
- jupyter notebookを立ち上げると、Kernel ErrorになってPythonが使えない。出てくるエラーは下記のとおり。
import win32api
Traceback (most recent call last):
File "", line 1, in
ImportError: DLL load failed while importing win32api: The specified module could not be found.
直し方
いろいろやってみたが、なぜか直った方法は次の通り。
$ pip uninstall pywin32
$ conda install pywin32
コメント