- Python 3.6 or higher
- Pip (Python package manager)
- Git
-
Clone the repo:
git clone https://github.com/Lakshya-Kapoor/MLB-Hackathon.git
-
Enter the project directory:
cd MLB-Hackathon/backend/
-
Create a virtual environment:
python3 -m venv myenv # On Windows: myenv\Scripts\activate # On macOS and Linux: source myenv/bin/activate
-
Install the dependencies:
pip install -r requirements.txt
-
Run the fast api server:
uvicorn main:app --reload