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 have found that some packages don't work, and I'm curious the general theory behind it, what's up with the heroku environment.
For instance, trying to list exiftool in the Aptfile, after install heroku run bash, and:
Can't locate Image/ExifTool.pm in @INC (you may need to install the Image::ExifTool module) (@INC contains: /app/.apt/usr/bin/lib /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /app/.apt/usr/bin/exiftool line 30.
BEGIN failed--compilation aborted at /app/.apt/usr/bin/exiftool line 30.
But I guess wherever apt-get installs exiftool Perl package is not a place the installed Perl can find it?
Even though @INC contains: /app/.apt/usr/bin/lib, and at /app/.apt/usr/bin/exiftool line 30, we are using the apt-installed exiftool command in the first place... weird.
I'm not sure what's going on with this interaction, if it indicates a flaw in the apt buildpack, or if there's anything that can be done as a workaround, or what!
The text was updated successfully, but these errors were encountered:
I have found that some packages don't work, and I'm curious the general theory behind it, what's up with the heroku environment.
For instance, trying to list
exiftool
in theAptfile
, after installheroku run bash
, and:I hadn't even realized exiftool was written in Perl! But Perl is of course on the machine, as evidenced by the error message from Perl -- and confirmed by https://devcenter.heroku.com/articles/stack-packages
But I guess wherever
apt-get
installs exiftool Perl package is not a place the installed Perl can find it?Even though
@INC contains: /app/.apt/usr/bin/lib
, andat /app/.apt/usr/bin/exiftool line 30
, we are using the apt-installedexiftool
command in the first place... weird.I'm not sure what's going on with this interaction, if it indicates a flaw in the apt buildpack, or if there's anything that can be done as a workaround, or what!
The text was updated successfully, but these errors were encountered: