我试图安装phantomjs以便make test
Twitter Bootstrap。我在本地安装后 ie npm install phantomjs
,它报告该软件包是无关的。
├─┬ phantomjs@1.9.0-3 extraneous
│ ├── adm-zip@0.2.1
...
npm ERR! extraneous: phantomjs@1.9.0-3 /Users/admin/bootstrap/node_modules/phantomjs
npm ERR! not ok code 0
但是,当phantomjs全局安装时npm install phantomjs -g
,它工作正常,即没有报告无关的错误。
问题:
- 是因为phantomjs 没有在package.json文件中指定吗?
- 一般问题:我们可以在全球和本地安装任何包,例如phantomjs吗?