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

How to install eoplatform via python pip




eoplatform - Earth Observation made easy., it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)

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



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_eoplatform_env

- Active the virtual environment

test_eoplatform_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_eoplatform_env

- Active the virtual environment

source test_eoplatform_env/bin/active


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

To install eoplatform on Windows(CMD):

py -m pip install eoplatform

To install eoplatform on Unix/macOs:

pip install eoplatform


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

Example:

pip install eoplatform==0.1.0


Please see the version list below table:

VersionReleased dateCommand
eoplatform 0.2.42021-11-11T04:20:10Windows:

py -m pip install eoplatform==0.2.4

Unix/macOs:

pip install eoplatform==0.2.4

eoplatform 0.2.32021-11-01T21:17:23Windows:

py -m pip install eoplatform==0.2.3

Unix/macOs:

pip install eoplatform==0.2.3

eoplatform 0.2.22021-10-29T21:29:25Windows:

py -m pip install eoplatform==0.2.2

Unix/macOs:

pip install eoplatform==0.2.2

eoplatform 0.2.12021-10-28T02:05:36Windows:

py -m pip install eoplatform==0.2.1

Unix/macOs:

pip install eoplatform==0.2.1

eoplatform 0.2.02021-10-27T20:06:46Windows:

py -m pip install eoplatform==0.2.0

Unix/macOs:

pip install eoplatform==0.2.0

eoplatform 0.1.22021-10-25T19:24:28Windows:

py -m pip install eoplatform==0.1.2

Unix/macOs:

pip install eoplatform==0.1.2

eoplatform 0.1.12021-10-25T18:55:55Windows:

py -m pip install eoplatform==0.1.1

Unix/macOs:

pip install eoplatform==0.1.1

eoplatform 0.1.02021-10-25T17:27:23Windows:

py -m pip install eoplatform==0.1.0

Unix/macOs:

pip install eoplatform==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_eoplatform_downloaded_file>

On Unix/macOs:

pip install <path_to_eoplatform_downloaded_file>


List distribution:

- eoplatform-0.1.0-py3-none-any.whl (python version >=3.7,<4.0)
- eoplatform-0.1.0.tar.gz (python version >=3.7,<4.0)
- eoplatform-0.1.1-py3-none-any.whl (python version >=3.7,<4.0)
- eoplatform-0.1.1.tar.gz (python version >=3.7,<4.0)
- eoplatform-0.1.2-py3-none-any.whl (python version >=3.7,<4.0)
- eoplatform-0.1.2.tar.gz (python version >=3.7,<4.0)
- eoplatform-0.2.0-py3-none-any.whl (python version >=3.7,<4.0)
- eoplatform-0.2.0.tar.gz (python version >=3.7,<4.0)
- eoplatform-0.2.1-py3-none-any.whl (python version >=3.7,<3.11)
- eoplatform-0.2.1.tar.gz (python version >=3.7,<3.11)
- eoplatform-0.2.2-py3-none-any.whl (python version >=3.7,<3.11)
- eoplatform-0.2.2.tar.gz (python version >=3.7,<3.11)
- eoplatform-0.2.3-py3-none-any.whl (python version >=3.8,<3.11)
- eoplatform-0.2.3.tar.gz (python version >=3.8,<3.11)
- eoplatform-0.2.4-py3-none-any.whl (python version >=3.8,<3.11)
- eoplatform-0.2.4.tar.gz (python version >=3.8,<3.11)


Project link:

- Homepage
- Repository