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

How to install pyerfa via python pip




pyerfa - Python bindings for ERFA, it belongs to Classifiers:

- Intended Audience :: Science/Research
- License :: OSI Approved :: BSD License
- Programming Language :: C
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Astronomy
- Topic :: Scientific/Engineering :: Physics

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



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_pyerfa_env

- Active the virtual environment

test_pyerfa_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_pyerfa_env

- Active the virtual environment

source test_pyerfa_env/bin/active


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

To install pyerfa on Windows(CMD):

py -m pip install pyerfa

To install pyerfa on Unix/macOs:

pip install pyerfa


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

Example:

pip install pyerfa==1.7.0


Please see the version list below table:

VersionReleased dateCommand
pyerfa 2.0.0.12021-11-02T19:43:50Windows:

py -m pip install pyerfa==2.0.0.1

Unix/macOs:

pip install pyerfa==2.0.0.1

pyerfa 2.0.02021-05-17T15:36:49Windows:

py -m pip install pyerfa==2.0.0

Unix/macOs:

pip install pyerfa==2.0.0

pyerfa 1.7.32021-04-25T14:27:45Windows:

py -m pip install pyerfa==1.7.3

Unix/macOs:

pip install pyerfa==1.7.3

pyerfa 1.7.22021-02-06T23:17:57Windows:

py -m pip install pyerfa==1.7.2

Unix/macOs:

pip install pyerfa==1.7.2

pyerfa 1.7.1.12020-11-18T15:07:54Windows:

py -m pip install pyerfa==1.7.1.1

Unix/macOs:

pip install pyerfa==1.7.1.1

pyerfa 1.7.12020-11-16T19:03:21Windows:

py -m pip install pyerfa==1.7.1

Unix/macOs:

pip install pyerfa==1.7.1

pyerfa 1.7.02020-05-31T22:08:41Windows:

py -m pip install pyerfa==1.7.0

Unix/macOs:

pip install pyerfa==1.7.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pyerfa_downloaded_file>

On Unix/macOs:

pip install <path_to_pyerfa_downloaded_file>


List distribution:


Project link:

- Homepage