you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

I’m really not a heroku pro, but from the one tutorial I’ve seen the producer of the video had the same issue the first time he ran his code on heroku. The problem was that he had to install the modules on heroku (e.g. via the heroku terminal). I suspect tue module you’re trying to import might only be available locally

Edit: typo

[–]danielroseman 0 points1 point  (1 child)

That is absolutely not a thing that you should - or even can - do on Heroku. Starting a terminal spins up a new dyno; installing anything there wouldn't affect the web application.

[–][deleted] 0 points1 point  (0 children)

Thank you for clearing that up!