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

How to install planetpy via python pip




planetpy - Python module to support analysis of planetary data., it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- Intended Audience :: Science/Research
- License :: OSI Approved :: ISC License (ISCL)

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



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_planetpy_env

- Active the virtual environment

test_planetpy_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_planetpy_env

- Active the virtual environment

source test_planetpy_env/bin/active


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

To install planetpy on Windows(CMD):

py -m pip install planetpy

To install planetpy on Unix/macOs:

pip install planetpy


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

Example:

pip install planetpy==0.2.0


Please see the version list below table:

VersionReleased dateCommand
planetpy 0.4.62019-03-23T04:13:40Windows:

py -m pip install planetpy==0.4.6

Unix/macOs:

pip install planetpy==0.4.6

planetpy 0.4.52019-03-23T04:12:41Windows:

py -m pip install planetpy==0.4.5

Unix/macOs:

pip install planetpy==0.4.5

planetpy 0.4.42019-03-23T04:06:34Windows:

py -m pip install planetpy==0.4.4

Unix/macOs:

pip install planetpy==0.4.4

planetpy 0.4.32019-03-23T03:43:58Windows:

py -m pip install planetpy==0.4.3

Unix/macOs:

pip install planetpy==0.4.3

planetpy 0.2.22016-12-20T12:01:22Windows:

py -m pip install planetpy==0.2.2

Unix/macOs:

pip install planetpy==0.2.2

planetpy 0.2.12016-12-20T11:05:23Windows:

py -m pip install planetpy==0.2.1

Unix/macOs:

pip install planetpy==0.2.1

planetpy 0.2.02016-12-20T10:25:03Windows:

py -m pip install planetpy==0.2.0

Unix/macOs:

pip install planetpy==0.2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_planetpy_downloaded_file>

On Unix/macOs:

pip install <path_to_planetpy_downloaded_file>


List distribution:


Project link:

- Homepage