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

How to install icetea via python pip




icetea - Icetea - test framework, it belongs to Classifiers:

- License :: OSI Approved :: Apache Software License
- Operating System :: OS Independent
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7

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



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_icetea_env

- Active the virtual environment

test_icetea_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_icetea_env

- Active the virtual environment

source test_icetea_env/bin/active


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

To install icetea on Windows(CMD):

py -m pip install icetea

To install icetea on Unix/macOs:

pip install icetea


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

Example:

pip install icetea==1.0.0rc2                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
icetea 2.0.12019-08-02T10:43:04Windows:

py -m pip install icetea==2.0.1

Unix/macOs:

pip install icetea==2.0.1

icetea 2.0.02019-05-28T09:40:15Windows:

py -m pip install icetea==2.0.0

Unix/macOs:

pip install icetea==2.0.0

icetea 1.2.42019-08-02T06:34:06Windows:

py -m pip install icetea==1.2.4

Unix/macOs:

pip install icetea==1.2.4

icetea 1.2.22019-04-12T05:16:47Windows:

py -m pip install icetea==1.2.2

Unix/macOs:

pip install icetea==1.2.2

icetea 1.2.12019-02-15T12:55:42Windows:

py -m pip install icetea==1.2.1

Unix/macOs:

pip install icetea==1.2.1

icetea 1.2.02019-02-12T09:52:01Windows:

py -m pip install icetea==1.2.0

Unix/macOs:

pip install icetea==1.2.0

icetea 1.1.02018-11-23T06:40:53Windows:

py -m pip install icetea==1.1.0

Unix/macOs:

pip install icetea==1.1.0

icetea 1.0.22018-09-14T15:02:21Windows:

py -m pip install icetea==1.0.2

Unix/macOs:

pip install icetea==1.0.2

icetea 1.0.12018-08-31T19:59:44Windows:

py -m pip install icetea==1.0.1

Unix/macOs:

pip install icetea==1.0.1

icetea 1.0.02018-08-28T12:03:26Windows:

py -m pip install icetea==1.0.0

Unix/macOs:

pip install icetea==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_icetea_downloaded_file>

On Unix/macOs:

pip install <path_to_icetea_downloaded_file>


List distribution:

- icetea-1.0.0rc2.tar.gz
- icetea-1.0.0rc3.tar.gz
- icetea-1.0.0rc4.tar.gz
- icetea-1.0.0.tar.gz
- icetea-1.0.1.tar.gz
- icetea-1.0.2-py2-none-any.whl
- icetea-1.0.2-py3-none-any.whl
- icetea-1.0.2.tar.gz
- icetea-1.1.0rc1-py3-none-any.whl
- icetea-1.1.0rc1.tar.gz
- icetea-1.1.0rc2-py3-none-any.whl
- icetea-1.1.0rc2.tar.gz
- icetea-1.1.0rc3-py3-none-any.whl
- icetea-1.1.0rc3.tar.gz
- icetea-1.1.0rc4-py3-none-any.whl
- icetea-1.1.0rc4.tar.gz
- icetea-1.1.0-py3-none-any.whl
- icetea-1.1.0.tar.gz
- icetea-1.2.0rc1-py3-none-any.whl
- icetea-1.2.0rc1.tar.gz
- icetea-1.2.0-py3-none-any.whl
- icetea-1.2.0.tar.gz
- icetea-1.2.1-py3-none-any.whl
- icetea-1.2.1.tar.gz
- icetea-1.2.2-py3-none-any.whl
- icetea-1.2.2.tar.gz
- icetea-1.2.3rc2-py3-none-any.whl
- icetea-1.2.3rc2.tar.gz
- icetea-1.2.4rc2-py3-none-any.whl
- icetea-1.2.4rc2.tar.gz
- icetea-1.2.4-py3-none-any.whl
- icetea-1.2.4.tar.gz
- icetea-2.0.0rc1-py3-none-any.whl
- icetea-2.0.0rc1.tar.gz
- icetea-2.0.0-py3-none-any.whl
- icetea-2.0.0.tar.gz
- icetea-2.0.1rc2-py3-none-any.whl
- icetea-2.0.1rc2.tar.gz
- icetea-2.0.1-py3-none-any.whl
- icetea-2.0.1.tar.gz


Project link:

- Homepage