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

How to install zeroc-ice via python pip




zeroc-ice - Ice is a comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more., it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- License :: OSI Approved :: GNU General Public License v2 (GPLv2)
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.0
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Topic :: Software Development
- Topic :: Software Development :: Build Tools

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



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_zeroc-ice_env

- Active the virtual environment

test_zeroc-ice_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_zeroc-ice_env

- Active the virtual environment

source test_zeroc-ice_env/bin/active


Step 2: OK, now, let flow below content to start the installation zeroc-ice

To install zeroc-ice on Windows(CMD):

py -m pip install zeroc-ice

To install zeroc-ice on Unix/macOs:

pip install zeroc-ice


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

Example:

pip install zeroc-ice==3.6b                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
zeroc-ice 3.7.82022-08-04T15:33:56Windows:

py -m pip install zeroc-ice==3.7.8

Unix/macOs:

pip install zeroc-ice==3.7.8

zeroc-ice 3.7.72022-01-26T20:57:34Windows:

py -m pip install zeroc-ice==3.7.7

Unix/macOs:

pip install zeroc-ice==3.7.7

zeroc-ice 3.7.62021-06-21T16:42:09Windows:

py -m pip install zeroc-ice==3.7.6

Unix/macOs:

pip install zeroc-ice==3.7.6

zeroc-ice 3.7.52021-01-26T18:03:13Windows:

py -m pip install zeroc-ice==3.7.5

Unix/macOs:

pip install zeroc-ice==3.7.5

zeroc-ice 3.7.42020-05-28T08:30:07Windows:

py -m pip install zeroc-ice==3.7.4

Unix/macOs:

pip install zeroc-ice==3.7.4

zeroc-ice 3.7.32019-10-15T20:02:34Windows:

py -m pip install zeroc-ice==3.7.3

Unix/macOs:

pip install zeroc-ice==3.7.3

zeroc-ice 3.7.22019-02-06T19:10:59Windows:

py -m pip install zeroc-ice==3.7.2

Unix/macOs:

pip install zeroc-ice==3.7.2

zeroc-ice 3.7.12018-04-23T22:42:37Windows:

py -m pip install zeroc-ice==3.7.1

Unix/macOs:

pip install zeroc-ice==3.7.1

zeroc-ice 3.7.0.12017-11-27T17:42:12Windows:

py -m pip install zeroc-ice==3.7.0.1

Unix/macOs:

pip install zeroc-ice==3.7.0.1

zeroc-ice 3.7.02017-07-21T23:31:14Windows:

py -m pip install zeroc-ice==3.7.0

Unix/macOs:

pip install zeroc-ice==3.7.0

zeroc-ice 3.6.52019-08-13T15:44:37Windows:

py -m pip install zeroc-ice==3.6.5

Unix/macOs:

pip install zeroc-ice==3.6.5

zeroc-ice 3.6.42017-09-08T17:00:07Windows:

py -m pip install zeroc-ice==3.6.4

Unix/macOs:

pip install zeroc-ice==3.6.4

zeroc-ice 3.6.32016-10-10T19:44:08Windows:

py -m pip install zeroc-ice==3.6.3

Unix/macOs:

pip install zeroc-ice==3.6.3

zeroc-ice 3.6.2.12016-04-29T08:21:59Windows:

py -m pip install zeroc-ice==3.6.2.1

Unix/macOs:

pip install zeroc-ice==3.6.2.1

zeroc-ice 3.6.22016-04-04T18:42:54Windows:

py -m pip install zeroc-ice==3.6.2

Unix/macOs:

pip install zeroc-ice==3.6.2

zeroc-ice 3.6.12015-09-11T16:31:59Windows:

py -m pip install zeroc-ice==3.6.1

Unix/macOs:

pip install zeroc-ice==3.6.1

zeroc-ice 3.6.02015-06-25T14:33:01Windows:

py -m pip install zeroc-ice==3.6.0

Unix/macOs:

pip install zeroc-ice==3.6.0


Step 4: Otherwise, you can install zeroc-ice from local archives:

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_zeroc-ice_downloaded_file>

On Unix/macOs:

pip install <path_to_zeroc-ice_downloaded_file>


List distribution:


Project link:

- Homepage