安装下摆未能找到分层依赖

时间:2013-02-16 03:52:02

标签: javascript spine.js

我正在尝试在Ubuntu 12.03 LTS上安装下摆,我得到以下内容:

似乎0.16或更高版本不在注册表中?不解..

sudo npm link
[sudo] password for tim: 
npm http GET https://registry.npmjs.org/http-proxy
npm http GET https://registry.npmjs.org/testacular
npm http GET https://registry.npmjs.org/jade
npm http GET https://registry.npmjs.org/eco/1.1.0-rc-3
npm http GET https://registry.npmjs.org/underscore
npm http GET https://registry.npmjs.org/less
npm http GET https://registry.npmjs.org/hem-less
npm http GET https://registry.npmjs.org/fast-detective
npm http GET https://registry.npmjs.org/optimist
npm http GET https://registry.npmjs.org/coffee-script
npm http GET https://registry.npmjs.org/watch
npm http GET https://registry.npmjs.org/stylus
npm http GET https://registry.npmjs.org/strata
npm http GET https://registry.npmjs.org/uglify-js
npm http 304 https://registry.npmjs.org/eco/1.1.0-rc-3
npm http GET https://registry.npmjs.org/eco/-/eco-1.1.0-rc-3.tgz
npm http 200 https://registry.npmjs.org/underscore
npm http GET https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz
npm http 200 https://registry.npmjs.org/less
npm http GET https://registry.npmjs.org/less/-/less-1.3.3.tgz
npm http 304 https://registry.npmjs.org/fast-detective
npm http GET https://registry.npmjs.org/fast-detective/-/fast-detective-0.0.2.tgz
npm http 200 https://registry.npmjs.org/hem-less
npm http GET https://registry.npmjs.org/hem-less/-/hem-less-0.0.4.tgz
npm http 304 https://registry.npmjs.org/optimist
npm http GET https://registry.npmjs.org/optimist/-/optimist-0.3.5.tgz
npm http 200 https://registry.npmjs.org/http-proxy
npm http GET https://registry.npmjs.org/http-proxy/-/http-proxy-0.8.7.tgz
npm http 304 https://registry.npmjs.org/coffee-script
npm http GET https://registry.npmjs.org/coffee-script/-/coffee-script-1.4.0.tgz
npm http 304 https://registry.npmjs.org/watch
npm http GET https://registry.npmjs.org/watch/-/watch-0.5.1.tgz
npm http 304 https://registry.npmjs.org/stylus
npm http GET https://registry.npmjs.org/stylus/-/stylus-0.32.0.tgz
npm http 304 https://registry.npmjs.org/strata

npm ERR! Error: No compatible version found: strata@'>=0.16.1'
npm ERR! Valid install targets:
npm ERR! ["0.8.0","0.8.1","0.8.2","0.9.0","0.9.1","0.10.0","0.10.1","0.11.0","0.12.0","0.12.1","0.12.2","0.12.3","0.12.4","0.12.5","0.13.0","0.14.0","0.15.0","0.15.1"]
npm ERR!     at installTargetsError (/usr/share/npm/lib/cache.js:488:10)
npm ERR!     at next_ (/usr/share/npm/lib/cache.js:438:17)
npm ERR!     at next (/usr/share/npm/lib/cache.js:415:44)
npm ERR!     at /usr/share/npm/lib/cache.js:408:5
npm ERR!     at saved (/usr/share/npm/lib/utils/npm-registry-client/get.js:147:7)
npm ERR!     at Object.oncomplete (/usr/lib/nodejs/graceful-fs.js:230:7)
npm ERR! You may report this log at:
npm ERR!     <http://bugs.debian.org/npm>
npm ERR! or use
npm ERR!     reportbug --attach /home/tim/work/hem/npm-debug.log npm
npm ERR! 
npm ERR! System Linux 3.2.0-38-generic
npm ERR! command "node" "/usr/bin/npm" "link"
npm ERR! cwd /home/tim/work/hem
npm ERR! node -v v0.6.12
npm ERR! npm -v 1.1.4
npm ERR! message No compatible version found: strata@'>=0.16.1'
npm ERR! message Valid install targets:
npm ERR! message ["0.8.0","0.8.1","0.8.2","0.9.0","0.9.1","0.10.0","0.10.1","0.11.0","0.12.0","0.12.1","0.12.2","0.12.3","0.12.4","0.12.5","0.13.0","0.14.0","0.15.0","0.15.1"]
npm http 304 https://registry.npmjs.org/uglify-js
npm http GET https://registry.npmjs.org/uglify-js/-/uglify-js-1.3.4.tgz
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/tim/work/hem/npm-debug.log
npm not ok

2 个答案:

答案 0 :(得分:2)

我认为这些问题主要来自与旧版本节点的分层不兼容。

不要从Ubuntu的软件包管理器安装节点,该管理器具有相当旧的版本。按照此处的说明操作:Should I install node.js on Ubuntu using package manager or from source?

接下来,使用npm安装脚本而不是包管理器安装npm:

curl https://npmjs.org/install.sh | sudo sh

最后,我建议从git repo安装下摆而不是使用npm。原始的下摆开发商不再支持它了,并且在一个单独的分支中开发了一系列新的下摆功能,这在git repo中是最新的。

git clone https://github.com/spine/hem.git
cd hem
git checkout version0_2 (or version0_3)
sudo npm install -g .

为了进一步参考,我在Linux环境中编写了post on setting up spine, hem, and other stuff

答案 1 :(得分:0)

要获取最新的Node.js和npm,有一个ppa适用于ubuntu https://launchpad.net/~chris-lea/+archive/node.js/

hepm on npm应该没问题,所以不需要使用github源代码,除非你想在version0_3分支中有一些更激烈的东西,但是version0_2分支已经合并到master并且很快会被修剪掉所以你应该避免使用它前进。