Created
December 17, 2017 23:21
-
-
Save cuuupid/963db645047597723956af13ab87b73a to your computer and use it in GitHub Desktop.
Install ImageMagick on Ubuntu (or WSL)
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 characters
| wget https://www.imagemagick.org/download/ImageMagick.tar.gz | |
| tar xvzf ImageMagick.tar.gz | |
| cd ImageMagick-* | |
| ./configure | |
| make | |
| sudo make install | |
| sudo ldconfig /usr/local/lib |
the above script is working for me.
the apt-get one command line is not working. Even after the update and upgrade.
Tried apt update, got this:
E: The repository 'http://packages.ros.org/ros/ubuntu jammy Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
libtool: error: error: relink 'MagickWand/libMagickWand-7.Q16HDRI.la' with the above command before installing itCurrently trying to install on WSL ubuntu 18 , what to do with this error?