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

How to install icon-etl via python pip




icon-etl - Tools for exporting ICON blockchain data to CSV or JSON, it belongs to Classifiers:

- Intended Audience :: Developers
- License :: OSI Approved
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7

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



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_icon-etl_env

- Active the virtual environment

test_icon-etl_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_icon-etl_env

- Active the virtual environment

source test_icon-etl_env/bin/active


Step 2: OK, now, let flow below content to start the installation icon-etl

To install icon-etl on Windows(CMD):

py -m pip install icon-etl

To install icon-etl on Unix/macOs:

pip install icon-etl


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

Example:

pip install icon-etl==0.0.1a1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
icon-etl 0.1.32020-11-06T16:41:26Windows:

py -m pip install icon-etl==0.1.3

Unix/macOs:

pip install icon-etl==0.1.3

icon-etl 0.1.22020-10-07T18:06:06Windows:

py -m pip install icon-etl==0.1.2

Unix/macOs:

pip install icon-etl==0.1.2

icon-etl 0.1.1 yanked2020-10-07T17:11:40Windows:

py -m pip install icon-etl==0.1.1                                                                          yanked

Unix/macOs:

pip install icon-etl==0.1.1                                                                          yanked

icon-etl 0.1.02020-09-21T16:10:44Windows:

py -m pip install icon-etl==0.1.0

Unix/macOs:

pip install icon-etl==0.1.0


Step 4: Otherwise, you can install icon-etl from local archives:

Download the distribution file from icon-etl-0.1.3.tar.gz or the specific icon-etl version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_icon-etl_downloaded_file>

On Unix/macOs:

pip install <path_to_icon-etl_downloaded_file>


List distribution:

- icon-etl-0.0.1a1.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1a2.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1a3.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1a4.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1b1.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1b2.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1b3.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1b4.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1b5.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.0.1b6.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.1.0.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.1.1.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.1.2.tar.gz (python version >=3.6.0,<3.8.0)
- icon-etl-0.1.3.tar.gz (python version >=3.6.0,<3.8.0)


Project link:

- Homepage
- Bug Reports
- Source