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

How to install goes2go via python pip




goes2go - Retreive GOES-16/17 data from AWS. Also proves some RGB recipes., it belongs to Classifiers:

- Intended Audience :: Education
- Topic :: Scientific/Engineering :: Atmospheric Science

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



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_goes2go_env

- Active the virtual environment

test_goes2go_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_goes2go_env

- Active the virtual environment

source test_goes2go_env/bin/active


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

To install goes2go on Windows(CMD):

py -m pip install goes2go

To install goes2go on Unix/macOs:

pip install goes2go


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

Example:

pip install goes2go==0.0.2


Please see the version list below table:

VersionReleased dateCommand
goes2go 2022.7.152022-07-16T04:05:00Windows:

py -m pip install goes2go==2022.7.15

Unix/macOs:

pip install goes2go==2022.7.15

goes2go 0.0.42021-08-30T14:46:44Windows:

py -m pip install goes2go==0.0.4

Unix/macOs:

pip install goes2go==0.0.4

goes2go 0.0.32021-04-01T14:57:23Windows:

py -m pip install goes2go==0.0.3

Unix/macOs:

pip install goes2go==0.0.3

goes2go 0.0.22021-02-22T16:49:03Windows:

py -m pip install goes2go==0.0.2

Unix/macOs:

pip install goes2go==0.0.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_goes2go_downloaded_file>

On Unix/macOs:

pip install <path_to_goes2go_downloaded_file>


List distribution:

- goes2go-0.0.2-py3-none-any.whl
- goes2go-0.0.2.tar.gz
- goes2go-0.0.3-py3-none-any.whl
- goes2go-0.0.3.tar.gz
- goes2go-0.0.4-py3-none-any.whl
- goes2go-0.0.4.tar.gz
- goes2go-2022.7.15-py3-none-any.whl
- goes2go-2022.7.15.tar.gz
- goes2go-2022.8.26-py3-none-any.whl
- goes2go-2022.8.26.tar.gz
- goes2go-2022.10.0-py3-none-any.whl (python version >=3.8)
- goes2go-2022.10.0.tar.gz (python version >=3.8)


Project link:

- Documentation
- Source Code