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

How to install icypher via python pip




icypher - Cypher access to Neo4j via IPython, it belongs to Classifiers:

- Framework :: IPython
- Topic :: Database
- Topic :: Database :: Front-Ends

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



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_icypher_env

- Active the virtual environment

test_icypher_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_icypher_env

- Active the virtual environment

source test_icypher_env/bin/active


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

To install icypher on Windows(CMD):

py -m pip install icypher

To install icypher on Unix/macOs:

pip install icypher


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

Example:

pip install icypher==0.1.3


Please see the version list below table:

VersionReleased dateCommand
icypher 0.1.6.12021-09-17T04:43:42Windows:

py -m pip install icypher==0.1.6.1

Unix/macOs:

pip install icypher==0.1.6.1

icypher 0.1.62019-02-21T13:49:43Windows:

py -m pip install icypher==0.1.6

Unix/macOs:

pip install icypher==0.1.6

icypher 0.1.52018-04-19T11:29:32Windows:

py -m pip install icypher==0.1.5

Unix/macOs:

pip install icypher==0.1.5

icypher 0.1.4.12017-05-04T16:23:42Windows:

py -m pip install icypher==0.1.4.1

Unix/macOs:

pip install icypher==0.1.4.1

icypher 0.1.42017-05-04T16:18:03Windows:

py -m pip install icypher==0.1.4

Unix/macOs:

pip install icypher==0.1.4

icypher 0.1.32015-07-19T18:59:02Windows:

py -m pip install icypher==0.1.3

Unix/macOs:

pip install icypher==0.1.3


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_icypher_downloaded_file>

On Unix/macOs:

pip install <path_to_icypher_downloaded_file>


List distribution:

- icypher-0.1.3.tar.gz
- icypher-0.1.4-py2.py3-none-any.whl
- icypher-0.1.4.tar.gz
- icypher-0.1.4.1-py2.py3-none-any.whl
- icypher-0.1.4.1.tar.gz
- icypher-0.1.5-py2.py3-none-any.whl
- icypher-0.1.5.tar.gz
- icypher-0.1.6-py2.py3-none-any.whl
- icypher-0.1.6.tar.gz
- icypher-0.1.6.1-py2.py3-none-any.whl
- icypher-0.1.6.1.tar.gz


Project link:

- Homepage