File size: 487 Bytes
75ddf01
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Generador texto a imagen usando los workers de cloudflare

## Instalacion

Copiar [.streamlit/secrets.toml.example](./.streamlit/secrets.toml.example) a `.streamlit/secrets.toml`.

```bash

python -m venv venv

source ./venv/bin/activate

python -m pip install -r requirements.txt

```

```cmd

python -m venv venv

venv\Scripts\activate

python -m pip install -r requirements.txt

```

## Correr

Correr app de Streamlit:

```bash

python -m streamlit run Inicio.py

```