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

How to install prosail via python pip




prosail - PROSPECT, SAIL and PROSAIL Python wrappers, it belongs to Classifiers:

- Environment :: Console
- Intended Audience :: End Users/Desktop
- Intended Audience :: Science/Research
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Atmospheric Science
- Topic :: Scientific/Engineering :: GIS
- Topic :: Scientific/Engineering :: Physics

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



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_prosail_env

- Active the virtual environment

test_prosail_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_prosail_env

- Active the virtual environment

source test_prosail_env/bin/active


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

To install prosail on Windows(CMD):

py -m pip install prosail

To install prosail on Unix/macOs:

pip install prosail


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

Example:

pip install prosail==1.1.1


Please see the version list below table:

VersionReleased dateCommand
prosail 2.0.52019-04-01T15:41:04Windows:

py -m pip install prosail==2.0.5

Unix/macOs:

pip install prosail==2.0.5

prosail 2.0.42019-02-21T18:34:23Windows:

py -m pip install prosail==2.0.4

Unix/macOs:

pip install prosail==2.0.4

prosail 2.0.32019-02-21T16:17:27Windows:

py -m pip install prosail==2.0.3

Unix/macOs:

pip install prosail==2.0.3

prosail 2.0.1.post12018-09-20T16:04:46Windows:

py -m pip install prosail==2.0.1.post1

Unix/macOs:

pip install prosail==2.0.1.post1

prosail 2.0.12018-09-20T15:54:26Windows:

py -m pip install prosail==2.0.1

Unix/macOs:

pip install prosail==2.0.1

prosail 2.0.02018-08-02T16:54:11Windows:

py -m pip install prosail==2.0.0

Unix/macOs:

pip install prosail==2.0.0

prosail 1.2.22016-02-22T16:32:42Windows:

py -m pip install prosail==1.2.2

Unix/macOs:

pip install prosail==1.2.2

prosail 1.2.02016-01-25T12:51:25Windows:

py -m pip install prosail==1.2.0

Unix/macOs:

pip install prosail==1.2.0

prosail 1.1.72016-01-25T12:41:04Windows:

py -m pip install prosail==1.1.7

Unix/macOs:

pip install prosail==1.1.7

prosail 1.1.62016-01-25T12:32:19Windows:

py -m pip install prosail==1.1.6

Unix/macOs:

pip install prosail==1.1.6

prosail 1.1.52016-01-25T12:10:49Windows:

py -m pip install prosail==1.1.5

Unix/macOs:

pip install prosail==1.1.5

prosail 1.1.32015-06-16T22:32:45Windows:

py -m pip install prosail==1.1.3

Unix/macOs:

pip install prosail==1.1.3

prosail 1.1.22015-06-03T17:46:23Windows:

py -m pip install prosail==1.1.2

Unix/macOs:

pip install prosail==1.1.2

prosail 1.1.12014-03-23T13:36:56Windows:

py -m pip install prosail==1.1.1

Unix/macOs:

pip install prosail==1.1.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_prosail_downloaded_file>

On Unix/macOs:

pip install <path_to_prosail_downloaded_file>


List distribution:


Project link:

- Homepage