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

How to install lunardate via python pip




lunardate - A Chinese Calendar Library in Pure Python, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License (GPL)

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



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_lunardate_env

- Active the virtual environment

test_lunardate_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_lunardate_env

- Active the virtual environment

source test_lunardate_env/bin/active


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

To install lunardate on Windows(CMD):

py -m pip install lunardate

To install lunardate on Unix/macOs:

pip install lunardate


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

Example:

pip install lunardate==0.1


Please see the version list below table:

VersionReleased dateCommand
lunardate 0.2.02018-10-07T15:04:05Windows:

py -m pip install lunardate==0.2.0

Unix/macOs:

pip install lunardate==0.2.0

lunardate 0.1.52014-09-09T04:51:54Windows:

py -m pip install lunardate==0.1.5

Unix/macOs:

pip install lunardate==0.1.5

lunardate 0.1.42008-12-03T09:21:18Windows:

py -m pip install lunardate==0.1.4

Unix/macOs:

pip install lunardate==0.1.4

lunardate 0.1.32008-10-06T05:03:34Windows:

py -m pip install lunardate==0.1.3

Unix/macOs:

pip install lunardate==0.1.3

lunardate 0.1.22008-10-05T12:40:35Windows:

py -m pip install lunardate==0.1.2

Unix/macOs:

pip install lunardate==0.1.2

lunardate 0.1.12008-10-05T11:29:12Windows:

py -m pip install lunardate==0.1.1

Unix/macOs:

pip install lunardate==0.1.1

lunardate 0.12008-10-02T06:22:51Windows:

py -m pip install lunardate==0.1

Unix/macOs:

pip install lunardate==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_lunardate_downloaded_file>

On Unix/macOs:

pip install <path_to_lunardate_downloaded_file>


List distribution:

- lunardate-0.1-py2.5.egg
- lunardate-0.1.tar.gz
- lunardate-0.1.1-py2.5.egg
- lunardate-0.1.1.tar.gz
- lunardate-0.1.2-py2.5.egg
- lunardate-0.1.2.tar.gz
- lunardate-0.1.3-py2.5.egg
- lunardate-0.1.3-py2.6.egg
- lunardate-0.1.3.tar.gz
- lunardate-0.1.4-py2.5.egg
- lunardate-0.1.4-py2.6.egg
- lunardate-0.1.4.tar.gz
- lunardate-0.1.5-py2.7.egg
- lunardate-0.1.5.tar.gz
- lunardate-0.2.0-py2-none-any.whl
- lunardate-0.2.0-py2.7.egg
- lunardate-0.2.0-py3-none-any.whl
- lunardate-0.2.0-py3.7.egg
- lunardate-0.2.0.tar.gz


Project link:

- Homepage