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

How to install rasterfoundry via python pip




rasterfoundry - A Python client for Raster Foundry, a web platform for combining, analyzing, and publishing raster data., it belongs to Classifiers:

- License :: OSI Approved :: Apache Software License

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



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_rasterfoundry_env

- Active the virtual environment

test_rasterfoundry_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_rasterfoundry_env

- Active the virtual environment

source test_rasterfoundry_env/bin/active


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

To install rasterfoundry on Windows(CMD):

py -m pip install rasterfoundry

To install rasterfoundry on Unix/macOs:

pip install rasterfoundry


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

Example:

pip install rasterfoundry==0.1.0


Please see the version list below table:

VersionReleased dateCommand
rasterfoundry 1.16.22019-01-18T21:08:11Windows:

py -m pip install rasterfoundry==1.16.2

Unix/macOs:

pip install rasterfoundry==1.16.2

rasterfoundry 1.16.02019-01-02T20:17:42Windows:

py -m pip install rasterfoundry==1.16.0

Unix/macOs:

pip install rasterfoundry==1.16.0

rasterfoundry 1.15.02018-11-30T17:52:52Windows:

py -m pip install rasterfoundry==1.15.0

Unix/macOs:

pip install rasterfoundry==1.15.0

rasterfoundry 1.13.12018-10-23T15:36:27Windows:

py -m pip install rasterfoundry==1.13.1

Unix/macOs:

pip install rasterfoundry==1.13.1

rasterfoundry 1.13.02018-10-23T14:14:24Windows:

py -m pip install rasterfoundry==1.13.0

Unix/macOs:

pip install rasterfoundry==1.13.0

rasterfoundry 0.7.12018-09-27T20:38:57Windows:

py -m pip install rasterfoundry==0.7.1

Unix/macOs:

pip install rasterfoundry==0.7.1

rasterfoundry 0.7.02018-09-27T20:36:06Windows:

py -m pip install rasterfoundry==0.7.0

Unix/macOs:

pip install rasterfoundry==0.7.0

rasterfoundry 0.6.02018-05-14T14:25:30Windows:

py -m pip install rasterfoundry==0.6.0

Unix/macOs:

pip install rasterfoundry==0.6.0

rasterfoundry 0.5.02018-01-26T18:38:38Windows:

py -m pip install rasterfoundry==0.5.0

Unix/macOs:

pip install rasterfoundry==0.5.0

rasterfoundry 0.4.12017-09-27T16:14:54Windows:

py -m pip install rasterfoundry==0.4.1

Unix/macOs:

pip install rasterfoundry==0.4.1

rasterfoundry 0.4.02017-09-07T18:39:05Windows:

py -m pip install rasterfoundry==0.4.0

Unix/macOs:

pip install rasterfoundry==0.4.0

rasterfoundry 0.3.02017-08-15T13:21:48Windows:

py -m pip install rasterfoundry==0.3.0

Unix/macOs:

pip install rasterfoundry==0.3.0

rasterfoundry 0.2.12017-08-10T18:02:36Windows:

py -m pip install rasterfoundry==0.2.1

Unix/macOs:

pip install rasterfoundry==0.2.1

rasterfoundry 0.1.02017-05-04T17:32:09Windows:

py -m pip install rasterfoundry==0.1.0

Unix/macOs:

pip install rasterfoundry==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_rasterfoundry_downloaded_file>

On Unix/macOs:

pip install <path_to_rasterfoundry_downloaded_file>


List distribution:


Project link:

- Homepage