Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install pysqlcipher via python pip




pysqlcipher - DB-API 2.0 interface for SQLCIPHER 3.x, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Developers
- License :: OSI Approved :: zlib/libpng License
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Programming Language :: C
- Topic :: Database
- Topic :: Database :: Database Engines/Servers
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules

When you know about this project and you want to new install pysqlcipher to support your project or you get trouble as ModuleNotFoundError: No module named "pysqlcipher" or ImportError: cannot import name "pysqlcipher" in your project, let follow this tutorial to install pysqlcipher



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_pysqlcipher_env

- Active the virtual environment

test_pysqlcipher_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_pysqlcipher_env

- Active the virtual environment

source test_pysqlcipher_env/bin/active


Step 2: OK, now, let flow below content to start the installation pysqlcipher

To install pysqlcipher on Windows(CMD):

py -m pip install pysqlcipher

To install pysqlcipher on Unix/macOs:

pip install pysqlcipher


Step 3: If you want to install a specific pysqlcipher version, add ==<pysqlcipher version> to the end command line

Example:

pip install pysqlcipher==2.6.3.dev1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
pysqlcipher 2.6.102017-04-13T18:56:17Windows:

py -m pip install pysqlcipher==2.6.10

Unix/macOs:

pip install pysqlcipher==2.6.10

pysqlcipher 2.6.92017-02-08T20:33:33Windows:

py -m pip install pysqlcipher==2.6.9

Unix/macOs:

pip install pysqlcipher==2.6.9

pysqlcipher 2.6.82017-01-20T18:11:18Windows:

py -m pip install pysqlcipher==2.6.8

Unix/macOs:

pip install pysqlcipher==2.6.8

pysqlcipher 2.6.72016-10-03T19:56:41Windows:

py -m pip install pysqlcipher==2.6.7

Unix/macOs:

pip install pysqlcipher==2.6.7

pysqlcipher 2.6.62016-09-30T20:18:29Windows:

py -m pip install pysqlcipher==2.6.6

Unix/macOs:

pip install pysqlcipher==2.6.6

pysqlcipher 2.6.52016-07-12T18:26:09Windows:

py -m pip install pysqlcipher==2.6.5

Unix/macOs:

pip install pysqlcipher==2.6.5

pysqlcipher 2.6.42014-11-13T12:01:48Windows:

py -m pip install pysqlcipher==2.6.4

Unix/macOs:

pip install pysqlcipher==2.6.4

pysqlcipher 2.6.3-12014-09-12T02:25:34Windows:

py -m pip install pysqlcipher==2.6.3-1

Unix/macOs:

pip install pysqlcipher==2.6.3-1

pysqlcipher 2.6.32013-12-05T23:22:52Windows:

py -m pip install pysqlcipher==2.6.3

Unix/macOs:

pip install pysqlcipher==2.6.3


Step 4: Otherwise, you can install pysqlcipher from local archives:

Download the distribution file from pysqlcipher-2.6.10.tar.gz or the specific pysqlcipher version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pysqlcipher_downloaded_file>

On Unix/macOs:

pip install <path_to_pysqlcipher_downloaded_file>


List distribution:


Project link:

- Homepage