Unable to import sqlite3 using Anaconda Python

I got this working on windows by downloading: the sqlite3 dll (find your system version) And placing it into the folder: C:\Users\YOURUSER\Anaconda3\DLLs (Depending on how you installed Anaconda, this may have to be placed into the following folder: C:\ProgramData\Anaconda3\DLLs) According to @alireza-taghdisian, you can locate the exact path of your conda environments (where you need … Read more

DLL load failed when importing PyQt5

It is because of missing Python3.dll (stub dll, that re-exports Python3x.dll functions, so that one version of extension can work for multiple versions of python). If your Python distro doesn’t bundle python3.dll, you can try one from WinPython (https://winpython.github.io/). At least the 2017/04/01 versions should have it. 1) Download WinPython (‘Zero’ version suffices; must be … Read more