简体   繁体   中英

facing error while install imagemagick Ubuntu 14.04

I am new to use ubuntu, to install imagemagick I have run below command

sudo apt-get update

but it showing error

在此处输入图片说明

I have executed below commands as well but not able to install

sudo -i
cd
apt-get install build-essential checkinstall && apt-get build-dep imagemagick -y
wget http://www.imagemagick.org/download/ImageMagick-6.8.7-7.tar.gz
tar xzvf ImageMagick-6.8.9-1.tar.gz
cd ImageMagick-6.8.9-1/
./configure --prefix=/opt/imagemagick-6.8 && make
checkinstall
https://gist.github.com/rodleviton/74e22e952bd6e7e5bee1

Google has dropped the support for 32-bit version for chrome on Linux and that is the reason you are seeing that error.

  1. Edit /etc/apt/sources.list.d/google-chrome.list - You would need sudo
  2. Replace the existing line with deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
  3. Run sudo apt-get update now.

And what is the error you are seeing when you are trying to install imagemagick ?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM