Instalación Python, Flask, PipEnv en Linux Ubuntu 20
Manuel Ortega Carcamo
Posted on March 23, 2021
Guía de instalación
Abrir una terminal y ejecutar los siguientes pasos:
Actualizar los paquetes disponibles y sus versiones.
sudo apt update
Instalar Python 3
sudo apt install python3-pip python3-dev build-essential libssl-dev libffi-dev python3-setuptools
Verificar la versión de Python instalada
python3 --version
Instalar pipenv
sudo apt install pipenv
Creación de mi primer API usando Flask
- Crear un carpeta e ingresar en ella
mkdir miApi
cd miApi
- Crear el entorno virtual
pipenv shell
- Instalar Flask
pipenv install flask
- Verificar las versiones instaladas
python3 -m flask --version
- Crear un archivo
hello.py
touch hello.py
- Pegar el siguiente código en el archivo
hello.py
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
- Agregar una variable de entorno con el nombre de la app
export FLASK_APP=hello.py
- Ejecutar la API
flask run
💖 💪 🙅 🚩
Manuel Ortega Carcamo
Posted on March 23, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
privacy Caught in the Crunch My Journey from Snacks to 2 Million Exposed Users Privacy
November 30, 2024
devchallenge Submission for the DevCycle Feature Flag Challenge: Feature Flag Funhouse
November 30, 2024