Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luisauter/binary-tree-interface
https://github.com/luisauter/binary-tree-interface
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/luisauter/binary-tree-interface
- Owner: LuiSauter
- Created: 2024-04-28T22:28:33.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-26T00:17:12.000Z (2 months ago)
- Last Synced: 2024-11-07T01:12:30.278Z (about 2 months ago)
- Language: Python
- Homepage: https://binary-tree-interface.vercel.app
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```