Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 891 Bytes

File metadata and controls

43 lines (33 loc) · 891 Bytes

Table of Contents


Prerequisites

To work on this project, ensure you have the following installed:

  • Python 3.9 or above
  • Git (for cloning the repository)

Setting Up the Environment

  1. Clone the repository:

    git clone https://github.com/rafaseto/SentiOpen.git
    cd SentiOpen
  2. Create a virtual environment in the project directory:

    python -m venv venv
  3. Activate the virtual environment:

    • On Windows:
      venv\Scripts\activate
    • On macOS/Linux:
      source venv/bin/activate

Installing Dependencies

With the virtual environment activated, install the required packages:

pip install -r requirements.txt