Installation
You can install pxtextmining
from either PyPI or GitHub.
The recommended method is to clone the repository from GitHub, as this will also include the models and datasets.
Option 1: Install from PyPI
This option allows you to use the functions coded in pxtextmining.
- Install
pxtextmining
and its PyPI dependencies:pip install pxtextmining
Option 2 (RECOMMENDED): Install from GitHub
This option is recommended as it gives you access to the full datasets and already trained models.
-
To begin with, clone the repository from github.
-
It is also recommended to create a new virtual environment, using your chosen method of managing Python environments.
-
The package uses
poetry
for dependency management. First, runpip install poetry
. -
Then, run
poetry install --with dev
.