0

我正在尝试在 Ubuntu 12.03 LTS 上安装 hem,我得到以下信息:

好像 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
4

2 回答 2

2

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

不要从 Ubuntu 的包管理器中安装节点,它有一个相当旧的版本。请按照此处的说明进行操作:我应该使用包管理器还是从源代码在 Ubuntu 上安装 node.js?

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

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

最后,我建议从 git repo 安装 hem,而不是使用 npm。hem 的原始开发者不再真正支持它,并且 hem 的许多新功能已在一个单独的分支中开发,该分支在 git repo 中是最新的。

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

为了进一步参考,我写了一篇关于在 Linux 环境中设置脊椎、下摆和其他东西的帖子。

于 2013-02-16T05:42:48.123 回答
0

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

现在 npm 上的 Hem 应该没问题,所以不需要使用 github 源,除非你想在 version0_3 分支中添加一些更激烈的东西,但是 version0_2 分支已经合并到 master 并且很快就会被修剪,所以你应该避免使用它。

于 2013-02-21T20:04:49.703 回答