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

How to install stbt-core via python pip




stbt-core - Automated GUI testing for Set-Top Boxes, it belongs to Classifiers:

- License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
- Topic :: Software Development :: Testing

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



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_stbt-core_env

- Active the virtual environment

test_stbt-core_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_stbt-core_env

- Active the virtual environment

source test_stbt-core_env/bin/active


Step 2: OK, now, let flow below content to start the installation stbt-core

To install stbt-core on Windows(CMD):

py -m pip install stbt-core

To install stbt-core on Unix/macOs:

pip install stbt-core


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

Example:

pip install stbt-core==32.0.0a1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
stbt-core 33.0.12022-07-26T09:08:41Windows:

py -m pip install stbt-core==33.0.1

Unix/macOs:

pip install stbt-core==33.0.1

stbt-core 33.0.02022-07-21T18:11:00Windows:

py -m pip install stbt-core==33.0.0

Unix/macOs:

pip install stbt-core==33.0.0

stbt-core 32.0.42021-07-19T21:36:30Windows:

py -m pip install stbt-core==32.0.4

Unix/macOs:

pip install stbt-core==32.0.4

stbt-core 32.0.32021-04-01T13:01:35Windows:

py -m pip install stbt-core==32.0.3

Unix/macOs:

pip install stbt-core==32.0.3

stbt-core 32.0.22020-12-14T13:13:52Windows:

py -m pip install stbt-core==32.0.2

Unix/macOs:

pip install stbt-core==32.0.2

stbt-core 32.0.12020-10-05T12:21:40Windows:

py -m pip install stbt-core==32.0.1

Unix/macOs:

pip install stbt-core==32.0.1

stbt-core 32.0.02020-09-30T17:51:15Windows:

py -m pip install stbt-core==32.0.0

Unix/macOs:

pip install stbt-core==32.0.0


Step 4: Otherwise, you can install stbt-core from local archives:

Download the distribution file from stbt_core-33.0.1.tar.gz or the specific stbt-core version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_stbt-core_downloaded_file>

On Unix/macOs:

pip install <path_to_stbt-core_downloaded_file>


List distribution:


Project link:

- Homepage