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

How to install rio-stac via python pip




rio-stac - Create STAC Items from raster datasets., it belongs to Classifiers:

- Intended Audience :: Information Technology
- Topic :: Scientific/Engineering :: GIS

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



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_rio-stac_env

- Active the virtual environment

test_rio-stac_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_rio-stac_env

- Active the virtual environment

source test_rio-stac_env/bin/active


Step 2: OK, now, let flow below content to start the installation rio-stac

To install rio-stac on Windows(CMD):

py -m pip install rio-stac

To install rio-stac on Unix/macOs:

pip install rio-stac


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

Example:

pip install rio-stac==0.1.0


Please see the version list below table:

VersionReleased dateCommand
rio-stac 0.4.22022-06-09T11:06:34Windows:

py -m pip install rio-stac==0.4.2

Unix/macOs:

pip install rio-stac==0.4.2

rio-stac 0.4.12022-04-26T14:04:57Windows:

py -m pip install rio-stac==0.4.1

Unix/macOs:

pip install rio-stac==0.4.1

rio-stac 0.4.02022-03-29T12:31:31Windows:

py -m pip install rio-stac==0.4.0

Unix/macOs:

pip install rio-stac==0.4.0

rio-stac 0.3.22021-10-29T07:45:03Windows:

py -m pip install rio-stac==0.3.2

Unix/macOs:

pip install rio-stac==0.3.2

rio-stac 0.3.12021-10-07T09:26:20Windows:

py -m pip install rio-stac==0.3.1

Unix/macOs:

pip install rio-stac==0.3.1

rio-stac 0.3.02021-09-10T10:49:12Windows:

py -m pip install rio-stac==0.3.0

Unix/macOs:

pip install rio-stac==0.3.0

rio-stac 0.2.12021-08-24T17:17:00Windows:

py -m pip install rio-stac==0.2.1

Unix/macOs:

pip install rio-stac==0.2.1

rio-stac 0.2.02021-07-06T13:25:00Windows:

py -m pip install rio-stac==0.2.0

Unix/macOs:

pip install rio-stac==0.2.0

rio-stac 0.1.12021-03-19T16:52:26Windows:

py -m pip install rio-stac==0.1.1

Unix/macOs:

pip install rio-stac==0.1.1

rio-stac 0.1.02021-03-19T16:28:28Windows:

py -m pip install rio-stac==0.1.0

Unix/macOs:

pip install rio-stac==0.1.0


Step 4: Otherwise, you can install rio-stac from local archives:

Download the distribution file from rio-stac-0.4.2.tar.gz or the specific rio-stac version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_rio-stac_downloaded_file>

On Unix/macOs:

pip install <path_to_rio-stac_downloaded_file>


List distribution:


Project link:

- Documentation
- Source