Installation Guide#

This guide will help you install the matrice package and its dependencies.

Requirements#

  • Python 3.7 or higher

  • pip (Python package installer)

Installing Matrice#

To install the latest stable release of matrice, use pip:

pip install matrice

Upgrading Matrice#

To upgrade to the latest version of matrice, run:

pip install --upgrade matrice

Verifying the Installation#

After installation, you can verify that the package is installed correctly by running:

import matrice
print(matrice.__version__)

If the version number is displayed, the installation was successful!

Optional Dependencies#

matrice supports optional dependencies for enhanced functionality. To install them, use:

pip install matrice[extras]

Where extras can be replaced with one or more of the following: - all: Install all optional dependencies. - ml: For machine learning features. - docs: For generating documentation.