SQLCipher with pyinstaller

I am using SQLCipher in python with the pysqlcipher3 package, instead of having it as a package i have the source as a module in my code, this works fine in my machine if i bundle the application with pyinstaller, but when i test the executable on other machines i get this error: DLL load failed while importing _sqlite3, when i builded the pysqlcipher3 pyd i builded it against amalgamation instead of building it against system sqlcipher, so it seems to be an issue with the pyd rather than an issue with the sqlite3.dll, but i havent been able to solve it

1 Like