J'ai un problème pour installer le module de toile dans le noeud. Il semble y avoir quelque chose avec le Caire, je reçois cette erreur ...
npm http GET https://registry.npmjs.org/canvas
npm http 304 https://registry.npmjs.org/canvas
npm http GET https://registry.npmjs.org/nan
npm http 304 https://registry.npmjs.org/nan
> [email protected] install /Users/plimb/Desktop/motion-therapy/node_modules/canvas
> node-gyp rebuild
Package cairo was not found in the pkg-config search path.
Perhaps you should add the directory containing `cairo.pc'
to the PKG_CONFIG_PATH environment variable
No package 'cairo' found
gyp: Call to './util/has_cairo_freetype.sh' returned exit status 0. while trying to load binding.gyp
gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack at ChildProcess.onCpExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:424:16)
gyp ERR! stack at ChildProcess.EventEmitter.emit (events.js:98:17)
gyp ERR! stack at Process.ChildProcess._handle.onexit (child_process.js:789:12)
gyp ERR! System Darwin 13.0.0
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/plimb/Desktop/motion-therapy/node_modules/canvas
gyp ERR! node -v v0.10.21
gyp ERR! node-gyp -v v0.10.10
gyp ERR! not ok
npm ERR! weird error 1
npm ERR! not ok code 0
Je ne suis pas sûr de ce que tout cela signifie! J'apprécierais toute aide! Par exemple, comment utiliser un ck mkdir cairo dans la variable d’environnement pkg_config_path?
Avait le même problème et @ Epistemex link m'a aidé à le dépanner.
... Vous devez installer les packages
libcairo2-dev
,libjpeg-dev
etlibgif-dev
...
Sudo apt-get install libcairo2-dev libjpeg-dev libgif-dev
J'étais également confronté au même problème sur mac Alors j'ai essayé ces étapes et j'ai eu la solution
Version Mac OSX> = 10.7.5 Node -v = v0.8.12
$ brew install cairo
$ pkg-config --atleast-version=1.12.2 cairo
$ echo $?
S'il renvoie 1, vous devez définir la variable d'environnement PKG_CONFIG_PATH afin que cairo.pc et fontconfig.pc soient disponibles.
$ locate cairo.pc
$ export PKG_CONFIG_PATH=/usr/X11/lib/pkgconfig/
Lancer à nouveau pkg-config ...
$ pkg-config --atleast-version=1.12.2 cairo
$ echo $?
Si elle retourne un 0 alors tout va bien dans le capot.
$ npm install canvas
Avait le même problème sur OS X 10.11.2 lors de l’installation du paquet qrcode
.
Résolu en installant ceux-ci:
brew install cairo
brew install pkg-config
xcode-select --install
Si quelqu'un rencontre toujours ce problème et trouve cette page, les opérations suivantes fonctionnent pour CentOS 6.6:
Sudo yum install cairo cairo-devel
Fondamentalement, la solution consiste à installer le paquet de développement ainsi que le paquet régulier (la meilleure réponse ici fait la même chose - sauf pour Ubuntu - chaque distribution peut être différente).
J'ai suivi les étapes données par @Piyush. Mais il me fallait une étape supplémentaire pour que cela fonctionne. J'utilise OS X 10.14.5
C'est donc ce que j'ai suivi.
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
Je voulais juste installer pkg-config sur OSX 10.10.4
brew install pkg-config
Lorsque j'ai rencontré ce problème, le problème était que la version de pkg-config
sur mon chemin était la version fournie par chefdk au lieu de la version installée par homebrew.
$ which pkg-config
/usr/local/bin/pkg-config
$ eval "$(chef Shell-init bash)"
$ which pkg-config
/opt/chefdk/embedded/bin/pkg-config
La solution consistait à supprimer l'entrée eval "$(chef Shell-init bash)"
de mon profil bash.
Plus de discussions sur la question de la génération de chemins de chefdk sur Github https://github.com/chef/chef-dk/issues/313
La réponse acceptée est acceptable si vous utilisez apt-get. Pour les utilisateurs YUM/DNF (Fedora, CentOS, autres systèmes de type RHEL), utilisez les méthodes suivantes:
yum install cairo cairo-devel cairomm-devel libjpeg-turbo-devel pango pango-devel pangomm pangomm-devel