🍕🔥 Pizza is great! 🔥🍕

Guida all'Installazione

Questa guida ti aiuterĂ  a configurare e avviare TomatoPy nel tuo ambiente Python.

Prerequisiti

  • Python 3.8 o superiore

  • pip (installer di pacchetti Python)

  • Un ambiente virtuale (consigliato)

Metodi di Installazione

Usando pip (Consigliato)

pip install tomatopy

Dal Sorgente

git clone https://github.com/tomatopy/tomatopy.git
cd tomatopy
pip install -e .

Configurazione Ambiente Virtuale

Consigliamo di usare un ambiente virtuale per gestire l'installazione di TomatoPy:

# Crea un ambiente virtuale
python -m venv tomatopy-env

# Attiva l'ambiente virtuale
# Su Windows:
tomatopy-env\Scripts\activate
# Su macOS/Linux:
source tomatopy-env/bin/activate

# Installa TomatoPy
pip install tomatopy

Verifica

Per verificare l'installazione, avvia Python e prova a importare TomatoPy:

import tomatopy
print(tomatopy.__version__)  # Dovrebbe stampare la versione installata

Risoluzione Problemi

Problemi Comuni

  1. ImportError: No module named 'tomatopy'

    • Ensure you've activated your virtual environment

    • Verify the installation was successful with pip list | grep tomatopy

  2. Version Compatibility

    • Check that you're using Python 3.8 or higher

    • Verify package dependencies are correctly installed

Ottenere Aiuto

Se incontri problemi:

Next Steps

Was this helpful?