7

我只需要在我的计算机上重新安装 linux,所以我一直在重新设置我的开发环境。之前我可以将 Meteor 与 Meteorite 一起使用,但现在该mrt命令什么也没做。它不会抛出错误或任何东西,我安装了它,sudo -H npm install -g meteorite然后,当我输入时mrt,它看起来像这样:

~ $ mrt
~ $

我看到了一些类似的问题,但没有解决方案。我想我会尝试自己构建它,但我希望有人可能已经有了答案

4

1 回答 1

15

我在ubuntu下遇到了同样的问题。mrt 正在寻找一个可执行节点(应该是 nodejs),但在 ubuntu 中,如果你查看包节点,你会得到:

$ apt-cache show node
Package: node
Priority: optional
Section: universe/hamradio
Installed-Size: 38
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Debian Hamradio Maintainers <debian-hams@lists.debian.org>
Architecture: all
Version: 0.3.2-7.4
Depends: ax25-node
Conflicts: nodejs-legacy
Filename: pool/universe/n/node/node_0.3.2-7.4_all.deb
Size: 1284
MD5sum: 7385a0f5916e03d9143459ca4706f0ec
SHA1: bf7aa087db81475636897ff39de344754ce1415b
SHA256: 9756770f771bcc4183cffa622f89e21a585be96bd4de27024b0a7cb167f310ad
Description-en: Amateur Packet Radio Node program (transitional package)
 The existing node package has been renamed to ax25-node. This transitional
 package exists to ease the upgrade path for existing users.
Description-md5: 1278ed271672fd829c99361f93f468da
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu

这实际上不是nodejs。基本上 mrt 调用了错误的可执行文件。我已通过以下方式修复:

  • 删除节点:sudo apt-get remove node
  • 定位 nodejs 可执行文件:运行which nodejs. 给我回来了/usr/bin/nodejs
  • 创建指向节点的链接:ln -s /usr/bin/nodejs /usr/bin/node

现在mrt正确调用nodejs并且一切正常

于 2014-01-19T14:56:06.917 回答