Reputation: 327
Is there a way to install a dependency (listed in the requirements.txt) not from pypi but from a wheel saved in the git repo while deploying? This question might sound odd at first, but it is simply due to the fact that I can not share the wheel on pypi.
Upvotes: 1
Views: 225
Reputation: 4690
First you deploy your application to Heroku then you can use Heroku Bash to install any requirements run this command for start your bash on heroku
heroku run bash
Upvotes: 1