ChrisDelClea
ChrisDelClea

Reputation: 327

Heroku deploy and install from wheel saved in git repo

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

Answers (1)

Ankit Tiwari
Ankit Tiwari

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

Related Questions