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

How to install sen3r via python pip




sen3r - SEN3R (Sentinel-3 Reflectance Retrieval over Rivers) enables extraction of reflectance time series from images over water bodies., it belongs to Classifiers:

- Development Status :: 3 - Alpha
- Natural Language :: English

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



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_sen3r_env

- Active the virtual environment

test_sen3r_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_sen3r_env

- Active the virtual environment

source test_sen3r_env/bin/active


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

To install sen3r on Windows(CMD):

py -m pip install sen3r

To install sen3r on Unix/macOs:

pip install sen3r


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

Example:

pip install sen3r==1.0.0


Please see the version list below table:

VersionReleased dateCommand
sen3r 1.0.22021-06-24T16:01:12Windows:

py -m pip install sen3r==1.0.2

Unix/macOs:

pip install sen3r==1.0.2

sen3r 1.0.12021-06-22T00:15:43Windows:

py -m pip install sen3r==1.0.1

Unix/macOs:

pip install sen3r==1.0.1

sen3r 1.0.02021-06-21T23:56:53Windows:

py -m pip install sen3r==1.0.0

Unix/macOs:

pip install sen3r==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sen3r_downloaded_file>

On Unix/macOs:

pip install <path_to_sen3r_downloaded_file>


List distribution:


Project link:

- Homepage