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

How to install ooi via python pip




ooi - OOI: OpenStack OCCI Interface, it belongs to Classifiers:

- Intended Audience :: Information Technology
- Intended Audience :: System Administrators
- License :: OSI Approved :: Apache Software License
- Operating System :: POSIX :: Linux

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



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_ooi_env

- Active the virtual environment

test_ooi_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_ooi_env

- Active the virtual environment

source test_ooi_env/bin/active


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

To install ooi on Windows(CMD):

py -m pip install ooi

To install ooi on Unix/macOs:

pip install ooi


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

Example:

pip install ooi==0.1.0.0rc2                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
ooi 1.2.02017-08-24T09:56:15Windows:

py -m pip install ooi==1.2.0

Unix/macOs:

pip install ooi==1.2.0

ooi 1.1.22017-07-17T10:48:04Windows:

py -m pip install ooi==1.1.2

Unix/macOs:

pip install ooi==1.1.2

ooi 1.1.12017-04-17T11:55:40Windows:

py -m pip install ooi==1.1.1

Unix/macOs:

pip install ooi==1.1.1

ooi 1.1.02017-04-12T10:48:57Windows:

py -m pip install ooi==1.1.0

Unix/macOs:

pip install ooi==1.1.0

ooi 1.0.02017-04-03T07:31:02Windows:

py -m pip install ooi==1.0.0

Unix/macOs:

pip install ooi==1.0.0

ooi 0.3.22016-09-19T16:18:54Windows:

py -m pip install ooi==0.3.2

Unix/macOs:

pip install ooi==0.3.2

ooi 0.3.12016-07-20T09:28:03Windows:

py -m pip install ooi==0.3.1

Unix/macOs:

pip install ooi==0.3.1

ooi 0.3.02016-06-13T14:39:04Windows:

py -m pip install ooi==0.3.0

Unix/macOs:

pip install ooi==0.3.0

ooi 0.2.02016-03-21T12:24:12Windows:

py -m pip install ooi==0.2.0

Unix/macOs:

pip install ooi==0.2.0

ooi 0.1.12015-11-27T12:12:56Windows:

py -m pip install ooi==0.1.1

Unix/macOs:

pip install ooi==0.1.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ooi_downloaded_file>

On Unix/macOs:

pip install <path_to_ooi_downloaded_file>


List distribution:

- ooi-0.1.0.0rc2.tar.gz
- ooi-0.1.0.0rc3.tar.gz
- ooi-0.1.1-py2-none-any.whl
- ooi-0.1.1.tar.gz
- ooi-0.2.0-py2-none-any.whl
- ooi-0.2.0.tar.gz
- ooi-0.3.0-py2-none-any.whl
- ooi-0.3.0.tar.gz
- ooi-0.3.1-py2-none-any.whl
- ooi-0.3.1.tar.gz
- ooi-0.3.2-py2-none-any.whl
- ooi-0.3.2.tar.gz
- ooi-1.0.0-py2-none-any.whl
- ooi-1.0.0.tar.gz
- ooi-1.1.0-py2-none-any.whl
- ooi-1.1.0.tar.gz
- ooi-1.1.1-py2-none-any.whl
- ooi-1.1.1.tar.gz
- ooi-1.1.2-py2-none-any.whl
- ooi-1.1.2.tar.gz
- ooi-1.2.0-py2-none-any.whl
- ooi-1.2.0.tar.gz


Project link:

- Homepage