"ModuleNotFoundError: No module named 'pysqlcipher3'" error while using Python 3.7 on windows 10

5.4k Views Asked by At

I am trying to decrypt one database file using Python 3.7. To decrypt it, I have to use pysqlcipher3 version for python 3.7. To install it, I have tried by using both commands:

pip3 install pysqlcipher3

and

pip install pysqlcipher3

and both the commands have showed successful installation of the pysqlcipher package. However, when I try to import pysqlcipher3 in my Python project by using this line:

from pysqlcipher3 import dbapi2 as sqlite

it displays this error:

ModuleNotFoundError: No module named 'pysqlcipher3

I have checked various GitHub projects, but none of them provide a clear working solution. The Python packages website says to install libsqlcipher in your OS but this time the issue is same, no documentation and link regarding for the installation of libsqlcipher for Windows 10. Can anyone provide me with proper installation steps, or any document, or any video tutorial, regarding the same? Or is there some issue with the import statement?

7

There are 7 best solutions below

0
On

Check if you have multiple pip installations by using
where pip

Also, check the interpreter being used in your project. Make sure it matches the python interpreter corresponding to the pip installation where the module was installed.

0
On

This worked for me on Ubuntu:

$ git clone https://github.com/coleifer/sqlcipher3
$ cd sqlcipher3
$ python setup.py build  # Build against the system libsqlcipher
$ sudo python setup.py install
$ cd ..

Then enter a Python prompt and try:

from sqlcipher3 import dbapi2 as sqlcipher
0
On

You'll need to install sqlcipher and the python library pysqlcipher3 with something like:

brew install sqlcipher
pip3 install pysqlcipher3 --user
0
On

go checkout where your pip from by using pip -V, it outputs the pip path to you.

Check if this path is in the venv you want. If not, the package was installed in a wrong path.

0
On

You might have to install libsqlcipher from source.

From https://github.com/sqlcipher/sqlcipher

Using MSVC

On Windows, all applicable build products can be compiled with MSVC. First open the command prompt window associated with the desired compiler version (e.g. "Developer Command Prompt for VS2013"). Next, use NMAKE with the provided "Makefile.msc" to build one of the supported targets.

For example:

mkdir bld
cd bld
nmake /f Makefile.msc TOP=..\sqlite
nmake /f Makefile.msc sqlite3.c TOP=..\sqlite
nmake /f Makefile.msc sqlite3.dll TOP=..\sqlite
nmake /f Makefile.msc sqlite3.exe TOP=..\sqlite
nmake /f Makefile.msc test TOP=..\sqlite

There are several build options that can be set via the NMAKE command line. For example, to build for WinRT, simply add "FOR_WINRT=1" argument to the "sqlite3.dll" command line above. When debugging into the SQLite code, adding the "DEBUG=1" argument to one of the above command lines is recommended.

SQLite does not require Tcl to run, but a Tcl installation is required by the makefiles (including those for MSVC). SQLite contains a lot of generated code and Tcl is used to do much of that code generation.

1
On

Check if you have multiple python versions installed on your Operating System. Also if you are using a virtual environment you should activate that before installing any packages.

0
On

You need to install de library libsqlcipher-dev from your repository manager, for example:

sudo apt install libsqlcipher-dev