Can't install rmagick gem on Ubuntu 13.04

前端 未结 6 833
無奈伤痛
無奈伤痛 2021-02-06 07:33

When I try to install rmagic with:

gem install rmagic

it gives error:

Building native extensions.  This could take a while...
E         


        
6条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-06 07:49

    Solution is to add ppa where those libs could be found.

    Add PPA:

    sudo add-apt-repository ppa:ricotz/testing
    

    Then update package list:

    sudo apt-get update
    

    Finally install it with:

    sudo apt-get install libmagickwand-dev
    

提交回复
热议问题