mariagrandury's picture
docs: explain how to launch the app in local
cb301ac
|
raw
history blame
674 Bytes
---
title: Transparency Self Assessment (FMTI)
emoji:
colorFrom: yellow
colorTo: yellow
sdk: gradio
sdk_version: 3.48.0
app_file: app.py
pinned: false
license: cc-by-4.0
---
## Dev Guide
To set up a virtual environment and install the necessary requirements, follow these steps:
1. Create a virtual environment:
```
python3 -m venv venv
```
2. Activate the virtual environment:
- On Windows, run:
```
venv\Scripts\activate
```
- On Unix or MacOS, run:
```
source venv/bin/activate
```
3. Install the requirements:
```
pip install -r requirements.txt
```
To run the app in local, run:
```
python3 app.py
```