Created
October 31, 2022 19:35
-
-
Save underchemist/f9354846c918853de474428f22669461 to your computer and use it in GitHub Desktop.
WIN GOTCHA: IPython and sqlite3.dll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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