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

How to install stginga via python pip




stginga - Ginga products specific to STScI data analysis, it belongs to Classifiers:

- Topic :: Scientific/Engineering :: Astronomy

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



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_stginga_env

- Active the virtual environment

test_stginga_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_stginga_env

- Active the virtual environment

source test_stginga_env/bin/active


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

To install stginga on Windows(CMD):

py -m pip install stginga

To install stginga on Unix/macOs:

pip install stginga


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

Example:

pip install stginga==0.3


Please see the version list below table:

VersionReleased dateCommand
stginga 1.3.02021-06-11T16:37:36Windows:

py -m pip install stginga==1.3.0

Unix/macOs:

pip install stginga==1.3.0

stginga 1.2.02020-07-21T13:55:56Windows:

py -m pip install stginga==1.2.0

Unix/macOs:

pip install stginga==1.2.0

stginga 1.12020-02-03T17:18:31Windows:

py -m pip install stginga==1.1

Unix/macOs:

pip install stginga==1.1

stginga 1.02018-11-09T04:11:58Windows:

py -m pip install stginga==1.0

Unix/macOs:

pip install stginga==1.0

stginga 0.32018-02-23T22:37:04Windows:

py -m pip install stginga==0.3

Unix/macOs:

pip install stginga==0.3


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_stginga_downloaded_file>

On Unix/macOs:

pip install <path_to_stginga_downloaded_file>


List distribution:


Project link:

- Homepage