Spaces:
Running
Running
File size: 799 Bytes
181a330 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | ---
title: OpenEnv Hackathon Boilerplate
emoji: 🚀
colorFrom: blue
colorTo: green
sdk: gradio
app_file: demo.py
pinned: false
---
# OpenEnv Hackathon Boilerplate
This repository contains the required boilerplate for the OpenEnv Hackathon submission.
## Requirements
### Environment
- Python 3.10+
- Dependencies listed in `requirements.txt`
### Installation Instructions
1. Clone the repository:
```bash
git clone https://github.com/eshwanthkartitr/Boiler_plate
cd Boiler_plate
```
2. Install dependencies:
```bash
pip install -r requirements.txt
```
3. Run the demo:
```bash
python demo.py
```
## Structure
- `demo.py`: Demo script to run the environment.
- `requirements.txt`: Python dependencies.
- `src/`: Directory containing the actual environment code. |