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

How to install ice.control via python pip




ice.control - System Administration and Site Management for BlueBream, it belongs to Classifiers:

- Framework :: ZODB
- Framework :: Zope3
- Intended Audience :: Customer Service
- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU General Public License (GPL)
- Programming Language :: Java
- Programming Language :: JavaScript
- Topic :: Internet :: WWW/HTTP :: Site Management

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



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_ice.control_env

- Active the virtual environment

test_ice.control_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_ice.control_env

- Active the virtual environment

source test_ice.control_env/bin/active


Step 2: OK, now, let flow below content to start the installation ice.control

To install ice.control on Windows(CMD):

py -m pip install ice.control

To install ice.control on Unix/macOs:

pip install ice.control


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

Example:

pip install ice.control==0.1.1


Please see the version list below table:

VersionReleased dateCommand
ice.control 0.4.02010-08-27T10:40:11Windows:

py -m pip install ice.control==0.4.0

Unix/macOs:

pip install ice.control==0.4.0

ice.control 0.3.32010-07-02T12:53:09Windows:

py -m pip install ice.control==0.3.3

Unix/macOs:

pip install ice.control==0.3.3

ice.control 0.3.22010-05-05T03:53:34Windows:

py -m pip install ice.control==0.3.2

Unix/macOs:

pip install ice.control==0.3.2

ice.control 0.3.12010-04-21T05:39:22Windows:

py -m pip install ice.control==0.3.1

Unix/macOs:

pip install ice.control==0.3.1

ice.control 0.3.02010-04-21T05:35:13Windows:

py -m pip install ice.control==0.3.0

Unix/macOs:

pip install ice.control==0.3.0

ice.control 0.2.02010-04-15T14:59:02Windows:

py -m pip install ice.control==0.2.0

Unix/macOs:

pip install ice.control==0.2.0

ice.control 0.1.32010-04-14T15:52:51Windows:

py -m pip install ice.control==0.1.3

Unix/macOs:

pip install ice.control==0.1.3

ice.control 0.1.22010-04-12T15:30:25Windows:

py -m pip install ice.control==0.1.2

Unix/macOs:

pip install ice.control==0.1.2

ice.control 0.1.12010-04-07T07:38:28Windows:

py -m pip install ice.control==0.1.1

Unix/macOs:

pip install ice.control==0.1.1


Step 4: Otherwise, you can install ice.control from local archives:

Download the distribution file from ice.control-0.4.0.tar.gz or the specific ice.control version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ice.control_downloaded_file>

On Unix/macOs:

pip install <path_to_ice.control_downloaded_file>


List distribution:

- ice.control-0.1.1-py2.6.egg
- ice.control-0.1.1.tar.gz
- ice.control-0.1.2-py2.6.egg
- ice.control-0.1.2.tar.gz
- ice.control-0.1.3-py2.6.egg
- ice.control-0.1.3.tar.gz
- ice.control-0.2.0-py2.6.egg
- ice.control-0.2.0.tar.gz
- ice.control-0.3.0-py2.6.egg
- ice.control-0.3.0.tar.gz
- ice.control-0.3.1-py2.6.egg
- ice.control-0.3.1.tar.gz
- ice.control-0.3.2-py2.6.egg
- ice.control-0.3.2.tar.gz
- ice.control-0.3.3-py2.6.egg
- ice.control-0.3.3.tar.gz
- ice.control-0.4.0-py2.6.egg
- ice.control-0.4.0.tar.gz


Project link:

- Homepage