Skip to content

Failure to start kernel due to failures in loading Dlls

Don Jayamanne edited this page Nov 15, 2021 · 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
    • conda install --name <environment name> --update-deps --force-reinstall (if using Conda environments)
Clone this wiki locally