Skip to content

Instantly share code, notes, and snippets.

@underchemist
Created October 31, 2022 19:35
Show Gist options
  • Save underchemist/f9354846c918853de474428f22669461 to your computer and use it in GitHub Desktop.
Save underchemist/f9354846c918853de474428f22669461 to your computer and use it in GitHub Desktop.
WIN GOTCHA: IPython and sqlite3.dll
If you are working with python module that depends on a custom sqlite3.dll, IPython on startup will load sqlite3.dll from the installation's vendored DLLs. This can cause a conflict resulting in a failed DLL load since the module that needs the custom sqlite3.dll cannot override the currently loaded DLL (DLL HELL).
WORKAROUND: copy the custom sqlite3.dll to the installation location
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment