Skip to content

Failure to start kernel due to failures in loading Dlls

Don Jayamanne edited this page Mar 14, 2022 · 4 revisions

Python kernels can fail to start if some dlls such as Win32api fail to load.

Recommended solution

  • Please consider installing the modules that could not be imported.
  • If they have already been installed, its possible it hasn't been installed correct, hence try the reinstall option as follows:
python -m pip install <xyz> -U --fore-reinstall # if using a non-conda environment
conda install --name <environment name> --update-deps --force-reinstall # if using Conda environment
Clone this wiki locally