Installation

Deepparse is available for Python 3.10, Python 3.11, Python 3.12 and Python 3.13.

Note

We do not recommend installation as a root user on your system Python. Please setup a virtual environment, e.g., via Anaconda or Miniconda, or create a Docker image.

Quick Start

PyTorch
Your OS
Package
CUDA
Run:

Installation

Before installing deepparse, you must have the latest version of PyTorch in your environment.

  • Install the stable version of Deepparse:

    pip install deepparse
    
  • Install the stable version of Deepparse with the app extra dependencies:

    pip install "deepparse[app]"
    
  • Install the stable version of Deepparse with all extra dependencies:

    pip install "deepparse[all]"
    
  • Install the stable version of Deepparse with native FastText support (requires Python 3.10–3.12):

    pip install "deepparse[fasttext]"
    

Note

On Python 3.13, the fasttext-wheel package cannot be compiled. Deepparse will automatically fall back to Gensim to load FastText embeddings. See Note on FastText Models and Python 3.13+ for details.

  • Install the latest development version of Deepparse:

    pip install -U git+https://github.com/GRAAL-Research/deepparse.git@dev