Heroku Deploy Error : No Matching Distribution Found For Anaconda-client==1.6.14
I using trying to deploy an application built using python's Dash Framework to Heroku. Following the deploy instructions posted here. I am having an issue when pushing to master r
Solution 1:
You're using Heroku's documentation to deploy with the Python buildpack which doesn't support a Conda runtime. The Heroku recommended approach is to use Docker (example here) to deploy a Conda runtime to Heroku.
Another option would be to simply use a Conda buildpack instead of the Docker image.
Post a Comment for "Heroku Deploy Error : No Matching Distribution Found For Anaconda-client==1.6.14"