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

How to install eacal via python pip




eacal - Python modules for accessing East Asia calendars (Sexagenary cycle, Solar term, etc.), it belongs to Classifiers:

- License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
- Natural Language :: Chinese (Simplified)
- Natural Language :: Chinese (Traditional)
- Natural Language :: Japanese
- Natural Language :: Korean
- Natural Language :: Vietnamese
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
- Topic :: Scientific/Engineering :: Astronomy

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



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_eacal_env

- Active the virtual environment

test_eacal_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_eacal_env

- Active the virtual environment

source test_eacal_env/bin/active


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

To install eacal on Windows(CMD):

py -m pip install eacal

To install eacal on Unix/macOs:

pip install eacal


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

Example:

pip install eacal==0.0.1


Please see the version list below table:

VersionReleased dateCommand
eacal 0.0.32015-05-17T06:14:41Windows:

py -m pip install eacal==0.0.3

Unix/macOs:

pip install eacal==0.0.3

eacal 0.0.22015-05-13T20:27:16Windows:

py -m pip install eacal==0.0.2

Unix/macOs:

pip install eacal==0.0.2

eacal 0.0.12015-05-12T23:01:05Windows:

py -m pip install eacal==0.0.1

Unix/macOs:

pip install eacal==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_eacal_downloaded_file>

On Unix/macOs:

pip install <path_to_eacal_downloaded_file>


List distribution:

- eacal-0.0.1.tar.gz
- eacal-0.0.2.tar.gz
- eacal-0.0.3.tar.gz


Project link:

- Homepage