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

How to install hpe3par-sdk via python pip




hpe3par-sdk - HPE Alletra 9000 and HPE Primera and HPE 3PAR Software Development Kit for Python, it belongs to Classifiers:

- Programming Language :: Python :: 2.6
- Topic :: Internet :: WWW/HTTP

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



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_hpe3par-sdk_env

- Active the virtual environment

test_hpe3par-sdk_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_hpe3par-sdk_env

- Active the virtual environment

source test_hpe3par-sdk_env/bin/active


Step 2: OK, now, let flow below content to start the installation hpe3par-sdk

To install hpe3par-sdk on Windows(CMD):

py -m pip install hpe3par-sdk

To install hpe3par-sdk on Unix/macOs:

pip install hpe3par-sdk


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

Example:

pip install hpe3par-sdk==1.0.0


Please see the version list below table:

VersionReleased dateCommand
hpe3par-sdk 1.2.22021-08-17T09:55:31Windows:

py -m pip install hpe3par-sdk==1.2.2

Unix/macOs:

pip install hpe3par-sdk==1.2.2

hpe3par-sdk 1.2.12019-09-09T13:55:15Windows:

py -m pip install hpe3par-sdk==1.2.1

Unix/macOs:

pip install hpe3par-sdk==1.2.1

hpe3par-sdk 1.2.02018-12-04T08:34:01Windows:

py -m pip install hpe3par-sdk==1.2.0

Unix/macOs:

pip install hpe3par-sdk==1.2.0

hpe3par-sdk 1.0.22018-05-23T09:09:12Windows:

py -m pip install hpe3par-sdk==1.0.2

Unix/macOs:

pip install hpe3par-sdk==1.0.2

hpe3par-sdk 1.0.12018-05-16T06:34:51Windows:

py -m pip install hpe3par-sdk==1.0.1

Unix/macOs:

pip install hpe3par-sdk==1.0.1

hpe3par-sdk 1.0.02018-05-09T11:24:59Windows:

py -m pip install hpe3par-sdk==1.0.0

Unix/macOs:

pip install hpe3par-sdk==1.0.0


Step 4: Otherwise, you can install hpe3par-sdk from local archives:

Download the distribution file from hpe3par_sdk-1.2.2.tar.gz or the specific hpe3par-sdk version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_hpe3par-sdk_downloaded_file>

On Unix/macOs:

pip install <path_to_hpe3par-sdk_downloaded_file>


List distribution:

- hpe3par_sdk-1.0.0.tar.gz
- hpe3par_sdk-1.0.1-py2.7.egg
- hpe3par_sdk-1.0.2.tar.gz
- hpe3par_sdk-1.2.0-py2-none-any.whl
- hpe3par_sdk-1.2.0.tar.gz
- hpe3par_sdk-1.2.1-py2-none-any.whl
- hpe3par_sdk-1.2.1.tar.gz
- hpe3par_sdk-1.2.2-py3-none-any.whl
- hpe3par_sdk-1.2.2.tar.gz


Project link:

- Homepage