You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to install mtr. When I ps:exec and issue an mtr command, I get missing library errors. As I add the missing libraries to Aptfile, I get new missing library errors. The dependencies are deep so I could chase this all day if I have to do it manually. Is there a flag or something I can add to install the dependencies for me?
The text was updated successfully, but these errors were encountered:
These dependencies are all available on the Heroku build image, but not the runtime image (as seen in the tables here - https://devcenter.heroku.com/articles/stack-packages). So when the application is building apt can see these packages available and therefore does not install them again, but at runtime the packages are then missing and this is why you then getting the missing library errors.
Unfortunately the only way to solve this would be to identify and install these dependencies in your Aptfile yourself.
I'm attempting to install mtr. When I ps:exec and issue an mtr command, I get missing library errors. As I add the missing libraries to Aptfile, I get new missing library errors. The dependencies are deep so I could chase this all day if I have to do it manually. Is there a flag or something I can add to install the dependencies for me?
The text was updated successfully, but these errors were encountered: