1

推奨されるコマンドを使用して、node.js 用の PDFKit をインストールしようとしています。

npm install pdfkit

ただし、次のメッセージで失敗します。

zlib@1.0.5 プレインストール /home/woody/node_modules/pdfkit/node_modules/zlib node-waf clean || 真実; node-waf 構成ビルド

sh: node-waf: not found
sh: node-waf: not found
npm ERR! error installing zlib@1.0.5 Error: zlib@1.0.5 preinstall: `node-waf clean || true; node-waf configure build`
npm ERR! error installing zlib@1.0.5 `sh "-c" "node-waf clean || true; node-waf configure build"` failed with 127
npm ERR! error installing zlib@1.0.5     at ChildProcess.<anonymous> (/usr/lib/node_modules/npm/lib/utils/exec.js:49:20)
npm ERR! error installing zlib@1.0.5     at ChildProcess.emit (events.js:67:17)
npm ERR! error installing zlib@1.0.5     at ChildProcess.onexit (child_process.js:192:12)
npm ERR! error installing pdfkit@0.1.5 Error: zlib@1.0.5 preinstall: `node-waf clean || true; node-waf configure build`
npm ERR! error installing pdfkit@0.1.5 `sh "-c" "node-waf clean || true; node-waf configure build"` failed with 127
npm ERR! error installing pdfkit@0.1.5     at ChildProcess.<anonymous> (/usr/lib/node_modules/npm/lib/utils/exec.js:49:20)
npm ERR! error installing pdfkit@0.1.5     at ChildProcess.emit (events.js:67:17)
npm ERR! error installing pdfkit@0.1.5     at ChildProcess.onexit (child_process.js:192:12)
npm ERR! zlib@1.0.5 preinstall: `node-waf clean || true; node-waf configure build`
npm ERR! `sh "-c" "node-waf clean || true; node-waf configure build"` failed with 127
npm ERR! 
npm ERR! Failed at the zlib@1.0.5 preinstall script.
npm ERR! This is most likely a problem with the zlib package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-waf clean || true; node-waf configure build
npm ERR! You can get their info via:
npm ERR!     npm owner ls zlib
npm ERR! There is likely additional logging output above.
npm ERR! 
npm ERR! System Linux 2.6.32-33-generic-pae
npm ERR! command "node" "/usr/bin/npm" "install" "pdfkit"
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/woody/npm-debug.log
npm not ok

Ubuntu 10.04.3 LTS を実行しています

誰かに助けや提案があれば、それは素晴らしいことです - ありがとう。

4

1 に答える 1

4

nodejs-dev パッケージをインストールする必要があります。

sudo apt-get install nodejs-dev
于 2011-10-08T07:40:59.270 に答える