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

How to install eosiopy via python pip




eosiopy - Python library of the EOS.IO project., it belongs to Classifiers:

- Development Status :: 3 - Alpha
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python :: 3 :: Only
- 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 eosiopy to support your project or you get trouble as ModuleNotFoundError: No module named "eosiopy" or ImportError: cannot import name "eosiopy" in your project, let follow this tutorial to install eosiopy



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_eosiopy_env

- Active the virtual environment

test_eosiopy_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_eosiopy_env

- Active the virtual environment

source test_eosiopy_env/bin/active


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

To install eosiopy on Windows(CMD):

py -m pip install eosiopy

To install eosiopy on Unix/macOs:

pip install eosiopy


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

Example:

pip install eosiopy==0.0.2


Please see the version list below table:

VersionReleased dateCommand
eosiopy 0.1.42018-07-30T10:17:23Windows:

py -m pip install eosiopy==0.1.4

Unix/macOs:

pip install eosiopy==0.1.4

eosiopy 0.1.32018-07-24T02:46:14Windows:

py -m pip install eosiopy==0.1.3

Unix/macOs:

pip install eosiopy==0.1.3

eosiopy 0.1.22018-07-03T09:28:13Windows:

py -m pip install eosiopy==0.1.2

Unix/macOs:

pip install eosiopy==0.1.2

eosiopy 0.1.12018-07-03T09:19:02Windows:

py -m pip install eosiopy==0.1.1

Unix/macOs:

pip install eosiopy==0.1.1

eosiopy 0.0.62018-06-19T02:28:04Windows:

py -m pip install eosiopy==0.0.6

Unix/macOs:

pip install eosiopy==0.0.6

eosiopy 0.0.42018-06-15T11:44:47Windows:

py -m pip install eosiopy==0.0.4

Unix/macOs:

pip install eosiopy==0.0.4

eosiopy 0.0.32018-06-08T09:17:27Windows:

py -m pip install eosiopy==0.0.3

Unix/macOs:

pip install eosiopy==0.0.3

eosiopy 0.0.22018-06-07T02:24:43Windows:

py -m pip install eosiopy==0.0.2

Unix/macOs:

pip install eosiopy==0.0.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_eosiopy_downloaded_file>

On Unix/macOs:

pip install <path_to_eosiopy_downloaded_file>


List distribution:

- eosiopy-0.0.2-py3-none-any.whl
- eosiopy-0.0.3-py3-none-any.whl
- eosiopy-0.0.4-py3-none-any.whl
- eosiopy-0.0.6-py3-none-any.whl
- eosiopy-0.1.1.tar.gz
- eosiopy-0.1.2.tar.gz
- eosiopy-0.1.3.tar.gz
- eosiopy-0.1.4.tar.gz


Project link:

- Homepage