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

How to install statmorph via python pip




statmorph - Non-parametric morphological diagnostics of galaxy images, it belongs to Classifiers:

- Topic :: Scientific/Engineering :: Astronomy

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



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_statmorph_env

- Active the virtual environment

test_statmorph_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_statmorph_env

- Active the virtual environment

source test_statmorph_env/bin/active


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

To install statmorph on Windows(CMD):

py -m pip install statmorph

To install statmorph on Unix/macOs:

pip install statmorph


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

Example:

pip install statmorph==0.1.0


Please see the version list below table:

VersionReleased dateCommand
statmorph 0.4.02020-12-26T02:51:46Windows:

py -m pip install statmorph==0.4.0

Unix/macOs:

pip install statmorph==0.4.0

statmorph 0.3.62020-10-12T06:55:19Windows:

py -m pip install statmorph==0.3.6

Unix/macOs:

pip install statmorph==0.3.6

statmorph 0.3.52019-08-31T19:35:07Windows:

py -m pip install statmorph==0.3.5

Unix/macOs:

pip install statmorph==0.3.5

statmorph 0.3.42019-08-23T22:52:00Windows:

py -m pip install statmorph==0.3.4

Unix/macOs:

pip install statmorph==0.3.4

statmorph 0.3.32019-01-09T00:03:14Windows:

py -m pip install statmorph==0.3.3

Unix/macOs:

pip install statmorph==0.3.3

statmorph 0.3.22018-08-29T07:16:15Windows:

py -m pip install statmorph==0.3.2

Unix/macOs:

pip install statmorph==0.3.2

statmorph 0.3.12018-06-18T04:20:39Windows:

py -m pip install statmorph==0.3.1

Unix/macOs:

pip install statmorph==0.3.1

statmorph 0.3.02018-06-15T08:14:52Windows:

py -m pip install statmorph==0.3.0

Unix/macOs:

pip install statmorph==0.3.0

statmorph 0.2.12018-05-31T05:15:32Windows:

py -m pip install statmorph==0.2.1

Unix/macOs:

pip install statmorph==0.2.1

statmorph 0.2.02018-01-28T22:36:28Windows:

py -m pip install statmorph==0.2.0

Unix/macOs:

pip install statmorph==0.2.0

statmorph 0.1.02017-10-19T08:50:38Windows:

py -m pip install statmorph==0.1.0

Unix/macOs:

pip install statmorph==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_statmorph_downloaded_file>

On Unix/macOs:

pip install <path_to_statmorph_downloaded_file>


List distribution:


Project link:

- Homepage