-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Another issue with installing on Mac OS #161
Comments
Hey! A few people have reported issues with this module lately. Unfortunately, I haven't used it in years because I'm no longer working on the project that required it. So I can't offer much insight - definitely not in a reasonable time - into how to make things work. :( It could be that newer versions of the compiler are more strict, that newer versions of the libraries/modules are incompatible, or really, a lot of other things. If you can't figure out a solution, I recommend looking at native javascript modules (like Jimp) before digging deeper into C++ bindings. :) Good luck! |
@antonk52 could you try with imagemagick v6.9.x. 6.9.6 is the version that I use on macos 10.12.3 |
thank you for your answers @elad and @cartuchogl If I try to install a 6.9v, I first remove IM with
same for But I succeeded with Then when I tried to install the npm module I got the same as the first result
so I found where the
But when I tried to install the npm module it gave me the same output |
Had the same issue with Sierra 10.12.5 Finally reinstalling works with no errors... |
@zinne that fixed it for me thanks. As a sidenote I had to additionally add the --force flag for the uninstall |
Thank you @zinne. The exact version of imagemagick 6 got when I installed |
@zinne catalina, not working :( |
@terion-name were you able to get it to work on Catalina? I am also unable to get it to work on Catalina 😞 |
I am using
imagemagick-native
on my server and it works like a charm. However on my local machineI keep running into issues. I already had installed with brew
After running
npm i -S imagemagick-native
I ran into following errorI attempted to add the directory containing `Magick++.pc'
to the PKG_CONFIG_PATH environment variable with
export PKG_CONFIG_PATH=/usr/local/Cellar/imagemagick/7.0.5-4/lib/pkgconfig/
and now the output of
npm i -S imagemagick-native
isAfter looking at following
#120
JustinTulloss/zeromq.node#50
#109
#98
I added following to my
.profile
fileexport PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
But the output of
npm i -S imagemagick-native
remains the same as above.If I try to echo the path I get the following
Is there something I am missing or is there a missing step of the installation process?
Thank you
The text was updated successfully, but these errors were encountered: