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

How to install tempest-horizon via python pip




tempest-horizon - Tempest Plugin for Horizon tests, it belongs to Classifiers:

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

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



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_tempest-horizon_env

- Active the virtual environment

test_tempest-horizon_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_tempest-horizon_env

- Active the virtual environment

source test_tempest-horizon_env/bin/active


Step 2: OK, now, let flow below content to start the installation tempest-horizon

To install tempest-horizon on Windows(CMD):

py -m pip install tempest-horizon

To install tempest-horizon on Unix/macOs:

pip install tempest-horizon


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

Example:

pip install tempest-horizon==0.0.1


Please see the version list below table:

VersionReleased dateCommand
tempest-horizon 1.1.02020-09-10T20:37:56Windows:

py -m pip install tempest-horizon==1.1.0

Unix/macOs:

pip install tempest-horizon==1.1.0

tempest-horizon 1.0.02020-04-22T13:05:19Windows:

py -m pip install tempest-horizon==1.0.0

Unix/macOs:

pip install tempest-horizon==1.0.0

tempest-horizon 0.2.02019-09-26T09:42:44Windows:

py -m pip install tempest-horizon==0.2.0

Unix/macOs:

pip install tempest-horizon==0.2.0

tempest-horizon 0.1.02019-03-31T15:46:56Windows:

py -m pip install tempest-horizon==0.1.0

Unix/macOs:

pip install tempest-horizon==0.1.0

tempest-horizon 0.0.12016-05-06T18:35:41Windows:

py -m pip install tempest-horizon==0.0.1

Unix/macOs:

pip install tempest-horizon==0.0.1


Step 4: Otherwise, you can install tempest-horizon from local archives:

Download the distribution file from tempest-horizon-1.1.0.tar.gz or the specific tempest-horizon version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tempest-horizon_downloaded_file>

On Unix/macOs:

pip install <path_to_tempest-horizon_downloaded_file>


List distribution:


Project link:

- Homepage