🍕🔥 Pizza is great! 🔥🍕

Guida all'Installazione

Questa guida ti aiuterĂ  a far funzionare TomatoPy nel tuo ambiente Python.

Requisiti

  • Python 3.8 o superiore

  • pip (Python package installer)

  • A virtual environment (recommended)

Metodi di Installazione

Utilizzando pip (Consigliato)

pip install tomatopy

Da Sorgente

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

Impostazione dell'Ambiente Virtuale

Ti consigliamo di utilizzare un ambiente virtuale per gestire la tua installazione di TomatoPy:

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

# Activate the virtual environment
# On Windows:
tomatopy-env\Scripts\activate
# On macOS/Linux:
source tomatopy-env/bin/activate

# Install TomatoPy
pip install tomatopy

Verifica

Per verificare la tua installazione, esegui Python e prova a importare TomatoPy:

import tomatopy
print(tomatopy.__version__)  # Should print the installed version

Risoluzione dei Problemi

Problemi Comuni

  1. ImportError: Nessun modulo chiamato '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

Getting Help

Richiesta di Aiuto

Next Steps

Was this helpful?