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

How to install ens via python pip




ens - Ethereum Name Service, made easy in Python, it belongs to Classifiers:

- Intended Audience :: Information Technology
- Topic :: Database :: Front-Ends
- Topic :: Internet :: Finger
- Topic :: Internet :: Name Service (DNS)
- Topic :: Security
- Topic :: Security :: Cryptography
- Topic :: System
- Topic :: System :: Distributed Computing
- Topic :: System :: Systems Administration
- Topic :: System :: Systems Administration :: Authentication/Directory

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



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_ens_env

- Active the virtual environment

test_ens_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_ens_env

- Active the virtual environment

source test_ens_env/bin/active


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

To install ens on Windows(CMD):

py -m pip install ens

To install ens on Unix/macOs:

pip install ens


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

Example:

pip install ens==0.0.1


Please see the version list below table:

VersionReleased dateCommand
ens 0.6.12017-10-04T14:55:53Windows:

py -m pip install ens==0.6.1

Unix/macOs:

pip install ens==0.6.1

ens 0.6.02017-10-04T00:28:38Windows:

py -m pip install ens==0.6.0

Unix/macOs:

pip install ens==0.6.0

ens 0.5.22017-08-22T23:12:19Windows:

py -m pip install ens==0.5.2

Unix/macOs:

pip install ens==0.5.2

ens 0.5.12017-08-22T22:54:48Windows:

py -m pip install ens==0.5.1

Unix/macOs:

pip install ens==0.5.1

ens 0.5.02017-08-10T22:33:06Windows:

py -m pip install ens==0.5.0

Unix/macOs:

pip install ens==0.5.0

ens 0.4.02017-07-29T00:13:08Windows:

py -m pip install ens==0.4.0

Unix/macOs:

pip install ens==0.4.0

ens 0.3.02017-07-25T18:32:01Windows:

py -m pip install ens==0.3.0

Unix/macOs:

pip install ens==0.3.0

ens 0.2.02017-07-25T18:13:13Windows:

py -m pip install ens==0.2.0

Unix/macOs:

pip install ens==0.2.0

ens 0.1.02017-07-24T19:31:47Windows:

py -m pip install ens==0.1.0

Unix/macOs:

pip install ens==0.1.0

ens 0.0.12017-07-24T00:26:16Windows:

py -m pip install ens==0.0.1

Unix/macOs:

pip install ens==0.0.1


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

Download the distribution file from ens-0.6.1-py3-none-any.whl or the specific ens version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ens_downloaded_file>

On Unix/macOs:

pip install <path_to_ens_downloaded_file>


List distribution:

- ens-0.0.1-py3-none-any.whl (python version >=3.5)
- ens-0.1.0-py2-none-any.whl (python version >=3.5)
- ens-0.2.0-py3-none-any.whl (python version >=3.5)
- ens-0.3.0-py3-none-any.whl (python version >=3.5)
- ens-0.4.0-py3-none-any.whl (python version >=3.5)
- ens-0.5.0-py3-none-any.whl (python version >=3.5)
- ens-0.5.1-py3-none-any.whl (python version >=3.5)
- ens-0.5.2-py3-none-any.whl (python version >=3.5)
- ens-0.6.0-py3-none-any.whl (python version >=3.5)
- ens-0.6.1-py3-none-any.whl (python version >=3.5)


Project link:

- Homepage