Installation

Stable release

To install pylexique, run this command in your terminal:

$ pip install pylexique

This is the preferred method to install pylexique, as it will always install the most recent stable release.

If you don’t have pip installed, this Python installation guide can guide you through the process.

You can also install pylexique by using Anaconda or Miniconda instead of pip .

To install Anaconda or Miniconda, please follow the installation instructions on their respective websites. After having installed Anaconda or Miniconda, run these commands in your terminal:

$ conda config --add channels conda-forge
$ conda config --set channel_priority strict
$ conda install pylexique

If you already have Anaconda or Miniconda available on your system, just type this in your terminal:

$ conda install -c conda-forge pylexique

Warning

If you intend to install pylexique on a Apple Macbook with an Apple M1 processor, it is advised that you install pylexique by using the conda installation method as all dependencies will be pre-compiled.

From sources

The sources for pylexique can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/SekouDiaoNlp/pylexique

Or download the tarball:

$ curl  -OL https://github.com/SekouDiaoNlp/pylexique/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install