DEV Community

Discussion on: Integrating GitLab CI/CD, Flask, and Heroku

Collapse
 
hhsm95 profile image
Hugo Sandoval

Thanks bro, this is really helpful. I only changed:

apt-get install -y python-dev python-pip
pip install -r requirements.txt
Enter fullscreen mode Exit fullscreen mode

with python3:

apt-get install -y python3-dev python3-pip
pip3 install -r requirements.txt
Enter fullscreen mode Exit fullscreen mode