Skip to content

Instantly share code, notes, and snippets.

@anquegi
Forked from tsara27/README.md
Created September 1, 2022 15:39
Show Gist options
  • Select an option

  • Save anquegi/e9b23d8f5d19909cb7ee0c45e2ae43d4 to your computer and use it in GitHub Desktop.

Select an option

Save anquegi/e9b23d8f5d19909cb7ee0c45e2ae43d4 to your computer and use it in GitHub Desktop.

Revisions

  1. @tsara27 tsara27 revised this gist Mar 22, 2021. 1 changed file with 8 additions and 0 deletions.
    8 changes: 8 additions & 0 deletions README.md
    Original 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
    ```
  2. @tsara27 tsara27 revised this gist Mar 5, 2021. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions README.md
    Original 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"
    ```
  3. @tsara27 tsara27 created this gist Jun 12, 2019.
    15 changes: 15 additions & 0 deletions README.md
    Original 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'
    ```