-
-
Save anquegi/e9b23d8f5d19909cb7ee0c45e2ae43d4 to your computer and use it in GitHub Desktop.
Revisions
-
tsara27 revised this gist
Mar 22, 2021 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,4 +18,12 @@ C_INCLUDE_PATH=/usr/local/include/ImageMagick-6/ PKG_CONFIG_PATH=/usr/lib/imagem ``` export LDFLAGS="-L/home/linuxbrew/.linuxbrew/opt/imagemagick@6/lib" export CPPFLAGS="-I/home/linuxbrew/.linuxbrew/opt/imagemagick@6/include" ``` or ``` sudo ln -s /home/linuxbrew/.linuxbrew/Cellar/imagemagick@6/6.9.12-2/lib/libMagickWand-6.Q16.so.7 /usr/lib/libMagickWand-6.Q16.so.7 sudo ln -s /home/linuxbrew/.linuxbrew/Cellar/imagemagick@6/6.9.12-2/lib/libMagickCore-6.Q16.so.7 /usr/lib/libMagickCore-6.Q16.so.7 ``` -
tsara27 revised this gist
Mar 5, 2021 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,4 +12,10 @@ brew install imagemagick@6 4. Install rmagick gem via terminal. ``` C_INCLUDE_PATH=/usr/local/include/ImageMagick-6/ PKG_CONFIG_PATH=/usr/lib/imagemagick6/pkgconfig gem install rmagick -v '2.16.0' ``` 5. Probably needs ``` export LDFLAGS="-L/home/linuxbrew/.linuxbrew/opt/imagemagick@6/lib" export CPPFLAGS="-I/home/linuxbrew/.linuxbrew/opt/imagemagick@6/include" ``` -
tsara27 created this gist
Jun 12, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ # Installation Guidance 1. Install `libmagick6` via terminal. ``` sudo pacman -S libmagick ``` 2. Install Homebrew for Linux. https://docs.brew.sh/Homebrew-on-Linux 3. Install ImageMagick6 via homebrew. ``` brew install imagemagick@6 ``` 4. Install rmagick gem via terminal. ``` C_INCLUDE_PATH=/usr/local/include/ImageMagick-6/ PKG_CONFIG_PATH=/usr/lib/imagemagick6/pkgconfig gem install rmagick -v '2.16.0' ```