I\'m attempting to follow Heroku\'s python quickstart guide but am running into repeated problems. At the moment, \"git push heroku master\" is failing because it cannot ins
Maybe you are using a virtual environment and you just forgot to activate it
In this case, depending on how you stored the virtual environment in your project, you will probably first need to
source venv/bin/activate
and after that freeze your requirements
pip freeze > requirements.txt
finally
git push heroku master