Skip to content

Installing Prossa

Getting started with Prossa is quick and easy. Follow these simple steps to install Prossa and begin optimizing your data preprocessing workflow.

Prerequisites

Before installing Prossa, ensure you have the following:

  • Python 3.6 or higher
  • pip (Python package installer)

Installation Steps

  1. Open your terminal or command prompt.

  2. Run the following command to install Prossa using pip:

    pip install prossa

    or in your Notebooks

    !pip install prossa

    This command will download and install Prossa along with its dependencies.

  3. Verify the installation by importing Prossa in a Python environment:

    from prossa import analyze_dataset

    If no errors occur, Prossa has been successfully installed.

Upgrading Prossa

To upgrade to the latest version of Prossa, use the following command:

pip install --upgrade prossa

This will ensure you have the most up-to-date features and bug fixes.

Next Steps

Now that you have Prossa installed, you’re ready to start analyzing and preprocessing your datasets. Check out the Guide section to learn how to use Prossa’s features.