Package cairo was not found in the pkg-config search path. Node j.s install canvas issue

后端 未结 9 748
逝去的感伤
逝去的感伤 2020-12-01 05:46

I am having a problem installing installing the canvas module in node..It seems to be something with cairo I am getting this error...

npm http GET https://re         


        
9条回答
  •  时光取名叫无心
    2020-12-01 06:42

    I followed the steps given by @Piyush. But I needed an extra step to make it work. I'm using OS X 10.14.5

    So this is what I followed.

    brew install pkg-config
    brew install cairo
    pkg-config --atleast-version=1.12.2 cairo
    export PKG_CONFIG_PATH=/usr/X11/lib/pkgconfig/
    export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:/usr/local/opt/libffi/lib/pkgconfig"
    npm install canvas

提交回复
热议问题