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

How to install PyArabic via python pip




PyArabic - Arabic text tools for Python, it belongs to Classifiers:

- Natural Language :: Arabic
- Topic :: Text Processing
- Topic :: Text Processing :: Linguistic

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



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_PyArabic_env

- Active the virtual environment

test_PyArabic_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_PyArabic_env

- Active the virtual environment

source test_PyArabic_env/bin/active


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

To install PyArabic on Windows(CMD):

py -m pip install PyArabic

To install PyArabic on Unix/macOs:

pip install PyArabic


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

Example:

pip install PyArabic==0.1


Please see the version list below table:

VersionReleased dateCommand
PyArabic 0.6.152022-06-18T10:47:16Windows:

py -m pip install PyArabic==0.6.15

Unix/macOs:

pip install PyArabic==0.6.15

PyArabic 0.6.142021-08-08T11:53:23Windows:

py -m pip install PyArabic==0.6.14

Unix/macOs:

pip install PyArabic==0.6.14

PyArabic 0.6.132021-08-08T11:47:55Windows:

py -m pip install PyArabic==0.6.13

Unix/macOs:

pip install PyArabic==0.6.13

PyArabic 0.6.112021-07-03T11:20:27Windows:

py -m pip install PyArabic==0.6.11

Unix/macOs:

pip install PyArabic==0.6.11

PyArabic 0.6.102020-09-02T10:25:42Windows:

py -m pip install PyArabic==0.6.10

Unix/macOs:

pip install PyArabic==0.6.10

PyArabic 0.6.82020-06-23T21:10:34Windows:

py -m pip install PyArabic==0.6.8

Unix/macOs:

pip install PyArabic==0.6.8

PyArabic 0.6.72020-04-02T12:58:00Windows:

py -m pip install PyArabic==0.6.7

Unix/macOs:

pip install PyArabic==0.6.7

PyArabic 0.6.62019-08-23T13:53:27Windows:

py -m pip install PyArabic==0.6.6

Unix/macOs:

pip install PyArabic==0.6.6

PyArabic 0.6.52018-08-16T14:32:31Windows:

py -m pip install PyArabic==0.6.5

Unix/macOs:

pip install PyArabic==0.6.5

PyArabic 0.6.42018-04-01T11:38:04Windows:

py -m pip install PyArabic==0.6.4

Unix/macOs:

pip install PyArabic==0.6.4

PyArabic 0.6.32018-03-28T10:09:08Windows:

py -m pip install PyArabic==0.6.3

Unix/macOs:

pip install PyArabic==0.6.3

PyArabic 0.6.22017-02-16T11:07:55Windows:

py -m pip install PyArabic==0.6.2

Unix/macOs:

pip install PyArabic==0.6.2

PyArabic 0.6.12017-02-15T20:03:42Windows:

py -m pip install PyArabic==0.6.1

Unix/macOs:

pip install PyArabic==0.6.1

PyArabic 0.52015-02-22T20:50:26Windows:

py -m pip install PyArabic==0.5

Unix/macOs:

pip install PyArabic==0.5

PyArabic 0.42012-03-27T10:49:49Windows:

py -m pip install PyArabic==0.4

Unix/macOs:

pip install PyArabic==0.4

PyArabic 0.32011-08-03T13:46:04Windows:

py -m pip install PyArabic==0.3

Unix/macOs:

pip install PyArabic==0.3

PyArabic 0.22010-05-27T13:38:53Windows:

py -m pip install PyArabic==0.2

Unix/macOs:

pip install PyArabic==0.2

PyArabic 0.12010-03-01T22:44:59Windows:

py -m pip install PyArabic==0.1

Unix/macOs:

pip install PyArabic==0.1


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

Download the distribution file from PyArabic-0.6.15-py3-none-any.whl or the specific PyArabic version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PyArabic_downloaded_file>

On Unix/macOs:

pip install <path_to_PyArabic_downloaded_file>


List distribution:


Project link:

- Homepage