2013-06-28 50 views
0

我似乎無法通過在OSX雪豹NPM安裝sqlite3的,我一直無法確定原因:NPM安裝sqlite3的錯誤:節點GYP重建「沒有這樣的文件或目錄」

bravo-de-esmolfo:project knight4$ npm install sqlite3 
npm WARN package.json [email protected] No repository field. 
npm WARN package.json [email protected] No readme data. 
npm http GET https://registry.npmjs.org/sqlite3 
npm http 304 https://registry.npmjs.org/sqlite3 
npm http GET https://registry.npmjs.org/tar.gz 
npm http 304 https://registry.npmjs.org/tar.gz 
npm WARN engine [email protected]: wanted: {"node":"0.8.x"} (current: {"node":"v0.10.10","npm":"1.2.25"}) 
npm http GET https://registry.npmjs.org/fstream 
npm http GET https://registry.npmjs.org/tar 
npm http GET https://registry.npmjs.org/commander 
npm http 304 https://registry.npmjs.org/tar 
npm http 304 https://registry.npmjs.org/fstream 
npm http 200 https://registry.npmjs.org/commander 
npm http GET https://registry.npmjs.org/keypress 
npm http GET https://registry.npmjs.org/rimraf 
npm http GET https://registry.npmjs.org/mkdirp 
npm http GET https://registry.npmjs.org/graceful-fs 
npm http GET https://registry.npmjs.org/inherits 
npm http GET https://registry.npmjs.org/inherits 
npm http GET https://registry.npmjs.org/block-stream 
npm http 304 https://registry.npmjs.org/keypress 
npm http 304 https://registry.npmjs.org/rimraf 
npm http 304 https://registry.npmjs.org/graceful-fs 
npm http 304 https://registry.npmjs.org/mkdirp 
npm http 304 https://registry.npmjs.org/inherits 
npm http 304 https://registry.npmjs.org/inherits 
npm http 304 https://registry.npmjs.org/block-stream 

> [email protected] install /Users/knight4/Desktop/project/node_modules/sqlite3 
> node-gyp rebuild 

Traceback (most recent call last): 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp", line 18, in <module> 
    sys.exit(gyp.main(sys.argv[1:])) 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 523, in main 
    return gyp_main(args) 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 508, in gyp_main 
    generator.GenerateOutput(flat_list, targets, data, params) 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py", line 2105, in GenerateOutput 
    part_of_all=qualified_target in needed_targets) 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py", line 769, in Write 
    self.Pchify)) 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py", line 1154, in WriteSources 
    cflags = self.xcode_settings.GetCflags(configname) 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py", line 260, in GetCflags 
    sdk_root = self._SdkPath() 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py", line 247, in _SdkPath 
    return os.path.join(self._GetSdkBaseDir(), 
    File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py", line 230, in _GetSdkBaseDir 
    stderr=subprocess.STDOUT) 
    File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 711, in __init__ 
    errread, errwrite) 
    File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1308, in _execute_child 
    raise child_exception 
OSError: [Errno 2] No such file or directory 
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:415: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 10.8.0 
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" 
gyp ERR! cwd /Users/knight4/Desktop/project/node_modules/sqlite3 
gyp ERR! node -v v0.10.10 
gyp ERR! node-gyp -v v0.9.6 
gyp ERR! not ok 
npm ERR! weird error 1 
npm ERR! not ok code 0 

有什麼建議嗎?歡呼聲

+0

你的npm,node-gyp,gcc/g ++,python和make是什麼版本?我的猜測是有一個版本問題,例如python 3.xx不支持node-gyp – hoonto

+0

[email protected] [email protected] –

+0

它看起來像是窒息python,是python在路徑中,它是什麼版本? – hoonto

回答

1

在OSX上,node-gyp依賴於python 2.7,make和gcc/g ++。 make,gcc和g ++可以通過安裝XCode然後使用XCode安裝命令行工具來安裝。

相關問題