无法在 Ubuntu 16.04 中安装节点检查器

无法在 Ubuntu 16.04 中安装节点检查器

当尝试使用以下命令安装 node-inspector 时:

sudo npm install -g node-inspector

我遇到了以下问题:

node-pre-gyp ERR! Tried to download: https://node-inspector.s3.amazonaws.com/debug/v0.7.3/node-v48-linux-x64.tar.gz 
node-pre-gyp ERR! Pre-built binaries not found for [email protected] and [email protected] (node-v48 ABI) (falling back to source compile with node-gyp) 

我遗漏了什么吗?

它尝试下载的文件不存在...他为什么要尝试呢?

我可以手动安装它吗?

答案1

我遇到了同样的错误,我通过将 package.json 文件中的 grunt-node-inspector 版本更改为:“grunt-node-inspector”:“> = 0.2.0”,修复了此错误。

之后只需运行 npm update 就可以了。

答案2

仍然不确定是什么导致了我的问题,但我根据一篇文章找到了一种解决方法这里

git clone http://github.com/dannycoates/node-inspector.git
cd node-inspector
npm install -g

并且有效......

相关内容