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

How to install gtest-report via python pip




gtest-report - Generate test report for gtest., it belongs to Classifiers:

- Development Status :: 1 - Planning
- Topic :: Software Development :: Testing

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



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_gtest-report_env

- Active the virtual environment

test_gtest-report_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_gtest-report_env

- Active the virtual environment

source test_gtest-report_env/bin/active


Step 2: OK, now, let flow below content to start the installation gtest-report

To install gtest-report on Windows(CMD):

py -m pip install gtest-report

To install gtest-report on Unix/macOs:

pip install gtest-report


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

Example:

pip install gtest-report==0.0.2


Please see the version list below table:

VersionReleased dateCommand
gtest-report 0.0.22021-06-05T06:19:40Windows:

py -m pip install gtest-report==0.0.2

Unix/macOs:

pip install gtest-report==0.0.2


Step 4: Otherwise, you can install gtest-report from local archives:

Download the distribution file from gtest-report-0.0.2.tar.gz or the specific gtest-report version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gtest-report_downloaded_file>

On Unix/macOs:

pip install <path_to_gtest-report_downloaded_file>


List distribution:

- gtest-report-0.0.2.tar.gz


Project link:

- Homepage