Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/luisauter/binary-tree-interface


https://github.com/luisauter/binary-tree-interface

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

## Requerimientos básicos
**Python** y **Pip**, verificar si está instalado
```bash
python --version
pip3 --version
```

# Instalación
Virtual env
```bash
# entorno virtual
pip3 install virtualenv
```
Crear entorno virtual
```bash
# entorno virtual
python -m virtualenv venv
```
Activar entorno virutal
```bash
# Linux o Mac
source venv/bin/activate
# Windows
.\venv\Scripts\activate
```
## Siguiente paso
Instalar Flask
```bash
pip install flask
```