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

How to install stsci.tools via python pip




stsci.tools - Collection of STScI utility functions, it belongs to Classifiers:

- Topic :: Scientific/Engineering :: Astronomy

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



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_stsci.tools_env

- Active the virtual environment

test_stsci.tools_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_stsci.tools_env

- Active the virtual environment

source test_stsci.tools_env/bin/active


Step 2: OK, now, let flow below content to start the installation stsci.tools

To install stsci.tools on Windows(CMD):

py -m pip install stsci.tools

To install stsci.tools on Unix/macOs:

pip install stsci.tools


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

Example:

pip install stsci.tools==3.2


Please see the version list below table:

VersionReleased dateCommand
stsci.tools 4.0.12021-08-31T13:59:30Windows:

py -m pip install stsci.tools==4.0.1

Unix/macOs:

pip install stsci.tools==4.0.1

stsci.tools 4.0.02021-08-12T15:30:02Windows:

py -m pip install stsci.tools==4.0.0

Unix/macOs:

pip install stsci.tools==4.0.0

stsci.tools 3.6.02019-07-24T04:12:55Windows:

py -m pip install stsci.tools==3.6.0

Unix/macOs:

pip install stsci.tools==3.6.0

stsci.tools 3.5.22019-07-03T19:03:15Windows:

py -m pip install stsci.tools==3.5.2

Unix/macOs:

pip install stsci.tools==3.5.2

stsci.tools 3.4.132018-08-07T20:58:28Windows:

py -m pip install stsci.tools==3.4.13

Unix/macOs:

pip install stsci.tools==3.4.13

stsci.tools 3.4.122018-02-15T02:45:05Windows:

py -m pip install stsci.tools==3.4.12

Unix/macOs:

pip install stsci.tools==3.4.12

stsci.tools 3.4.112017-12-18T16:35:39Windows:

py -m pip install stsci.tools==3.4.11

Unix/macOs:

pip install stsci.tools==3.4.11

stsci.tools 3.4.102018-08-13T16:23:08Windows:

py -m pip install stsci.tools==3.4.10

Unix/macOs:

pip install stsci.tools==3.4.10

stsci.tools 3.4.92018-08-13T16:23:16Windows:

py -m pip install stsci.tools==3.4.9

Unix/macOs:

pip install stsci.tools==3.4.9

stsci.tools 3.4.72018-08-13T16:23:14Windows:

py -m pip install stsci.tools==3.4.7

Unix/macOs:

pip install stsci.tools==3.4.7

stsci.tools 3.4.62018-08-13T16:23:12Windows:

py -m pip install stsci.tools==3.4.6

Unix/macOs:

pip install stsci.tools==3.4.6

stsci.tools 3.4.32017-01-05T23:31:12Windows:

py -m pip install stsci.tools==3.4.3

Unix/macOs:

pip install stsci.tools==3.4.3

stsci.tools 3.4.22016-11-28T22:44:21Windows:

py -m pip install stsci.tools==3.4.2

Unix/macOs:

pip install stsci.tools==3.4.2

stsci.tools 3.42015-10-19T17:45:21Windows:

py -m pip install stsci.tools==3.4

Unix/macOs:

pip install stsci.tools==3.4

stsci.tools 3.32018-08-13T16:23:06Windows:

py -m pip install stsci.tools==3.3

Unix/macOs:

pip install stsci.tools==3.3

stsci.tools 3.2.32015-10-16T20:14:46Windows:

py -m pip install stsci.tools==3.2.3

Unix/macOs:

pip install stsci.tools==3.2.3

stsci.tools 3.2.22014-03-14T22:16:49Windows:

py -m pip install stsci.tools==3.2.2

Unix/macOs:

pip install stsci.tools==3.2.2

stsci.tools 3.2.12013-12-11T16:58:43Windows:

py -m pip install stsci.tools==3.2.1

Unix/macOs:

pip install stsci.tools==3.2.1

stsci.tools 3.22013-04-17T20:10:16Windows:

py -m pip install stsci.tools==3.2

Unix/macOs:

pip install stsci.tools==3.2


Step 4: Otherwise, you can install stsci.tools from local archives:

Download the distribution file from stsci.tools-4.0.1.tar.gz or the specific stsci.tools version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_stsci.tools_downloaded_file>

On Unix/macOs:

pip install <path_to_stsci.tools_downloaded_file>


List distribution:


Project link:

- Homepage