Installation

Welcome to the Noventa framework! Installing Noventa is a straightforward process. This guide will walk you through the necessary steps to get the framework up and running on your local machine.

Prerequisites

Before you begin, please ensure you have the following installed on your system:

  • Python 3.10 or higher: Noventa is built on modern Python features.
  • pip: The Python package installer is required to install Noventa.

Checking your Python version

You can check your Python version by running the following command in your terminal:

TERMINAL
$ python --version

Install Noventa

Managing Dependencies

It is highly recommended to use a virtual environment for your project to manage dependencies. This ensures that your project's dependencies are isolated from other Python projects on your system.

Creating a Virtual Environment

You can create a virtual environment using the following commands:

TERMINAL
$ python -m venv venv
$ source venv/bin/activate

Alternatively, if you are using Anaconda, you can create and activate a new environment with the following commands:

TERMINAL
$ conda create --name myenv python=3.13
$ conda activate myenv

Installing Packages

Once your virtual environment is activated, you can install packages using pip. These packages will be installed only within the active environment.

TERMINAL
$ pip install noventa

Install Noventa Extension

Search for "Noventa" in Visual Studio Code marketplace and install the extension. This is necessary to ensure your agent gets live feedback and can correct mistakes as they are made.

That's it! You are now ready to start building amazing web applications with Noventa.