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

How to install the-friendly-planets via python pip




the-friendly-planets - Tools for making easy-to-interpret aligned astronomical images of planets and moons., it belongs to Classifiers:

- Intended Audience :: Education
- Topic :: Scientific/Engineering :: Astronomy

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



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_the-friendly-planets_env

- Active the virtual environment

test_the-friendly-planets_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_the-friendly-planets_env

- Active the virtual environment

source test_the-friendly-planets_env/bin/active


Step 2: OK, now, let flow below content to start the installation the-friendly-planets

To install the-friendly-planets on Windows(CMD):

py -m pip install the-friendly-planets

To install the-friendly-planets on Unix/macOs:

pip install the-friendly-planets


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

Example:

pip install the-friendly-planets==0.2021.1


Please see the version list below table:

VersionReleased dateCommand
the-friendly-planets 0.2021.12021-07-29T05:55:04Windows:

py -m pip install the-friendly-planets==0.2021.1

Unix/macOs:

pip install the-friendly-planets==0.2021.1


Step 4: Otherwise, you can install the-friendly-planets from local archives:

Download the distribution file from the-friendly-planets-0.2021.1.tar.gz or the specific the-friendly-planets version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_the-friendly-planets_downloaded_file>

On Unix/macOs:

pip install <path_to_the-friendly-planets_downloaded_file>


List distribution:


Project link:

- Homepage