Spaces:
Running
Running
| # Create a virtual environment with Python 3.10 | |
| python3.10 -m venv venv | |
| # Activate the virtual environment | |
| source venv/bin/activate | |
| # Install the required dependencies | |
| pip install -r requirements.txt | |
| # Run the application | |
| uvicorn app:app --host 0.0.0.0 --port 7860 |