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

How to install nzpy via python pip




nzpy - IBM Netezza python driver, it belongs to Classifiers:

- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: Jython
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Database
- Topic :: Database :: Front-Ends

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



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_nzpy_env

- Active the virtual environment

test_nzpy_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_nzpy_env

- Active the virtual environment

source test_nzpy_env/bin/active


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

To install nzpy on Windows(CMD):

py -m pip install nzpy

To install nzpy on Unix/macOs:

pip install nzpy


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

Example:

pip install nzpy==1.0b1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
nzpy 1.152021-06-29T15:18:25Windows:

py -m pip install nzpy==1.15

Unix/macOs:

pip install nzpy==1.15

nzpy 1.142021-04-14T05:51:29Windows:

py -m pip install nzpy==1.14

Unix/macOs:

pip install nzpy==1.14

nzpy 1.132021-01-25T13:06:58Windows:

py -m pip install nzpy==1.13

Unix/macOs:

pip install nzpy==1.13

nzpy 1.122020-12-23T06:22:27Windows:

py -m pip install nzpy==1.12

Unix/macOs:

pip install nzpy==1.12

nzpy 1.112020-10-21T12:08:21Windows:

py -m pip install nzpy==1.11

Unix/macOs:

pip install nzpy==1.11

nzpy 1.12020-10-01T05:08:31Windows:

py -m pip install nzpy==1.1

Unix/macOs:

pip install nzpy==1.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_nzpy_downloaded_file>

On Unix/macOs:

pip install <path_to_nzpy_downloaded_file>


List distribution:

- nzpy-1.0b1-py3-none-any.whl (python version >=3.5)
- nzpy-1.0b1.tar.gz (python version >=3.5)
- nzpy-1.0b2-py3-none-any.whl (python version >=3.5)
- nzpy-1.0b2.tar.gz (python version >=3.5)
- nzpy-1.0b3-py3-none-any.whl (python version >=3.5)
- nzpy-1.0b3.tar.gz (python version >=3.5)
- nzpy-1.1-py3-none-any.whl (python version >=3.5)
- nzpy-1.1.tar.gz (python version >=3.5)
- nzpy-1.11-py3-none-any.whl (python version >=3.5)
- nzpy-1.11.tar.gz (python version >=3.5)
- nzpy-1.12-py3-none-any.whl (python version >=3.5)
- nzpy-1.12.tar.gz (python version >=3.5)
- nzpy-1.13-py3-none-any.whl (python version >=3.5)
- nzpy-1.13.tar.gz (python version >=3.5)
- nzpy-1.14-py3-none-any.whl (python version >=3.5)
- nzpy-1.14.tar.gz (python version >=3.5)
- nzpy-1.15-py3-none-any.whl (python version >=3.5)
- nzpy-1.15.tar.gz (python version >=3.5)


Project link:

- Homepage
- Documentation
- Source
- Tracker