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

How to install indic-punct via python pip




indic-punct - Punctuation and inverse text normalization for Indic languages and English, it belongs to Classifiers:

- Intended Audience :: Education
- Intended Audience :: Science/Research
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Artificial Intelligence
- Topic :: Text Processing
- Topic :: Text Processing :: Linguistic

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



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_indic-punct_env

- Active the virtual environment

test_indic-punct_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_indic-punct_env

- Active the virtual environment

source test_indic-punct_env/bin/active


Step 2: OK, now, let flow below content to start the installation indic-punct

To install indic-punct on Windows(CMD):

py -m pip install indic-punct

To install indic-punct on Unix/macOs:

pip install indic-punct


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

Example:

pip install indic-punct==2.0.7


Please see the version list below table:

VersionReleased dateCommand
indic-punct 2.1.42022-01-26T18:09:51Windows:

py -m pip install indic-punct==2.1.4

Unix/macOs:

pip install indic-punct==2.1.4

indic-punct 2.1.32022-01-26T18:06:47Windows:

py -m pip install indic-punct==2.1.3

Unix/macOs:

pip install indic-punct==2.1.3

indic-punct 2.1.22022-01-26T17:54:53Windows:

py -m pip install indic-punct==2.1.2

Unix/macOs:

pip install indic-punct==2.1.2

indic-punct 2.1.12022-01-26T17:51:40Windows:

py -m pip install indic-punct==2.1.1

Unix/macOs:

pip install indic-punct==2.1.1

indic-punct 2.1.02022-01-26T13:13:57Windows:

py -m pip install indic-punct==2.1.0

Unix/macOs:

pip install indic-punct==2.1.0

indic-punct 2.0.92022-01-26T11:47:15Windows:

py -m pip install indic-punct==2.0.9

Unix/macOs:

pip install indic-punct==2.0.9

indic-punct 2.0.82022-01-26T11:27:00Windows:

py -m pip install indic-punct==2.0.8

Unix/macOs:

pip install indic-punct==2.0.8

indic-punct 2.0.72022-01-26T10:53:58Windows:

py -m pip install indic-punct==2.0.7

Unix/macOs:

pip install indic-punct==2.0.7


Step 4: Otherwise, you can install indic-punct from local archives:

Download the distribution file from indic-punct-2.1.4.tar.gz or the specific indic-punct version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_indic-punct_downloaded_file>

On Unix/macOs:

pip install <path_to_indic-punct_downloaded_file>


List distribution:

- indic-punct-2.0.7.tar.gz (python version >=3.6, <4)
- indic_punct-2.0.7-py3-none-any.whl (python version >=3.6, <4)
- indic_punct-2.0.8-py3-none-any.whl (python version >=3.6, <4)
- indic_punct-2.0.9-py3-none-any.whl (python version >=3.6, <4)
- indic_punct-2.1.0-py3-none-any.whl (python version >=3.6, <4)
- indic_punct-2.1.1-py3-none-any.whl (python version >=3.6, <4)
- indic_punct-2.1.2-py3-none-any.whl (python version >=3.6, <4)
- indic_punct-2.1.3-py3-none-any.whl (python version >=3.6, <4)
- indic-punct-2.1.4.tar.gz (python version >=3.6, <4)
- indic_punct-2.1.4-py3-none-any.whl (python version >=3.6, <4)


Project link:

- Homepage