我正在尝试在Ubuntu 16.04 LTS上安装sharp。
我最初没有贵宾,所以我安装了
sudo apt-get install libvips-dev
这修复了第一个错误,但现在我遇到了另一个错误:
In file included from ../src/common.cc:25:0:
/usr/include/vips/vips8:35:25: fatal error: glib-object.h: No such file or directory
compilation terminated.
sharp.target.mk:115: recipe for target 'Release/obj.target/sharp/src/common.o' failed
make: *** [Release/obj.target/sharp/src/common.o] Error 1
make: Leaving directory '/home/rachel/node_modules/sharp/build'
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/usr/share/node-gyp/lib/build.js:269:23)
gyp ERR! stack at emitTwo (events.js:87:13)
gyp ERR! stack at ChildProcess.emit (events.js:172:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)
gyp ERR! System Linux 4.15.0-36-generic
gyp ERR! command "/usr/bin/nodejs" "/usr/bin/node-gyp" "rebuild"
gyp ERR! cwd /home/rachel/node_modules/sharp
gyp ERR! node -v v4.2.6
gyp ERR! node-gyp -v v3.0.3
gyp ERR! not ok
所以,我想出了glib-object.h属于哪个包并尝试安装它,但它已经安装了。事实上,该文件确实存在。
/usr/include/glib-2.0/glib-object.h
经过大量浏览,我发现了一个类似的问题,他们问标题的位置是否在 pkg-config --cflags vips-cpp 中。对于提问者来说,它不是,这导致了修复,但对我来说,它是(倒数第二)。
> pkg-config --cflags vips-cpp
-pthread -fopenmp -DMAGICKCORE_HDRI_ENABLE=0
-DMAGICKCORE_QUANTUM_DEPTH=16
-fopenmp -DMAGICKCORE_HDRI_ENABLE=0
-DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/libgsf-1
-I/usr/include/libxml2
-I/usr/include/x86_64-linux-gnu//ImageMagick-6
-I/usr/include/ImageMagick-6
-I/usr/include/x86_64-linux-gnu//ImageMagick-6
-I/usr/include/ImageMagick-6
-I/usr/include/orc-0.4
-I/usr/include/OpenEXR
-I/usr/include/openslide
-I/usr/lib/x86_64-linux-gnu/hdf5/serial/include
-I/usr/include/pango-1.0
-I/usr/include/harfbuzz
-I/usr/include/pango-1.0
-I/usr/include/freetype2
-I/usr/include/x86_64-linux-gnu
-I/usr/include/libpng12
-I/usr/include/libexif
-I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include
一旦验证文件存在并且其文件夹包含在上述输出中,我还没有找到任何解决方案。我完全不知道下一步该怎么做,所以任何建议将不胜感激。
npm 是一个全新安装(截至昨天),以防万一。
您有两个问题(我认为):首先,Ubuntu 16.04 附带的nodejs
是 4.x,早在 2018 年 4 月就不受支持——当前支持的nodejs
是 8.x。 其次,Ubuntu 16.04附带的libvips
也很古老,不能很好地与当前sharp
配合使用。
幸运的是,修复很简单:使用nodejs
6、8 和 10,sharp
将自动为您下载libvips
二进制文件。
我使用本指南安装了nodejs
8:
https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-16-04#how-to-install-using-a-ppa
然后只是:
npm install sharp
一切都奏效了。这里是作为Dockerfile
,供参考:
https://github.com/jcupitt/docker-builds/blob/master/sharp-ubuntu16.04/Dockerfile
看起来vips-cpp正在寻找GObject,而不是GLib,但pkg-config文件只要求GLib。 GObject基于GLib,它们密切相关,但它们不是同一个项目。
您应该以某种方式将gobject-2.0
添加到 pkg 配置依赖项中。 您可以在 sharp 构建系统中执行此操作(无论它拉入vips-cpp
包的哪个位置,它也取决于gobject-2.0
)。 您还可以修复vips-cpp
pkg 配置文件以将gobject-2.0
添加为依赖项;文件的位置取决于您的体系结构,但它是$LIBDIR/pkg-config/vips-cpp.pc
.
我遇到了完全相同的问题。对我来说,我通过从官方 github 编译 libvips 来解决。以下是说明:https://libvips.github.io/libvips/install.html
git clone git://github.com/jcupitt/libvips.git
cd libvips/
# install dependencies if you have errors during autogen.sh
#sudo apt install gtk-doc-tools
#sudo apt install gobject-introspection
./autogen.sh
make
sudo make install
解决 glib-object.h 问题后,您可能会遇到另一个错误:libvips-cpp.so.42:无法打开共享对象文件:没有这样的文件或目录
这可以通过以下单个命令来解决:
sudo sh -c 'echo "/usr/local/lib" >> /etc/ld.so.conf.d/usrlocal.conf'