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

How to install PersianG2p via python pip




PersianG2p - Simple grapheme-to-phomene converter for persian (farsi), it belongs to Classifiers:

- Topic :: Software Development :: Build Tools

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



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_PersianG2p_env

- Active the virtual environment

test_PersianG2p_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_PersianG2p_env

- Active the virtual environment

source test_PersianG2p_env/bin/active


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

To install PersianG2p on Windows(CMD):

py -m pip install PersianG2p

To install PersianG2p on Unix/macOs:

pip install PersianG2p


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

Example:

pip install PersianG2p==0.1.5


Please see the version list below table:

VersionReleased dateCommand
PersianG2p 0.3.22020-12-05T11:16:19Windows:

py -m pip install PersianG2p==0.3.2

Unix/macOs:

pip install PersianG2p==0.3.2

PersianG2p 0.3.12020-07-07T20:17:41Windows:

py -m pip install PersianG2p==0.3.1

Unix/macOs:

pip install PersianG2p==0.3.1

PersianG2p 0.3.02020-06-23T17:28:59Windows:

py -m pip install PersianG2p==0.3.0

Unix/macOs:

pip install PersianG2p==0.3.0

PersianG2p 0.2.12020-05-29T19:07:05Windows:

py -m pip install PersianG2p==0.2.1

Unix/macOs:

pip install PersianG2p==0.2.1

PersianG2p 0.1.62020-05-27T17:16:49Windows:

py -m pip install PersianG2p==0.1.6

Unix/macOs:

pip install PersianG2p==0.1.6

PersianG2p 0.1.52020-05-27T16:19:09Windows:

py -m pip install PersianG2p==0.1.5

Unix/macOs:

pip install PersianG2p==0.1.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PersianG2p_downloaded_file>

On Unix/macOs:

pip install <path_to_PersianG2p_downloaded_file>


List distribution:


Project link:

- Homepage
- Download