尝试使用NPM安装软件包时出错



我需要使用此软件包安装。我在node_modules文件夹中,我这样做:

URL: https://github.com/SparkPost/node-sparkpost

npm install sparkpost

我得到了这个错误:

npm ERR! Linux 3.19.0-47-generic
npm ERR! argv "node" "/usr/local/bin/npm" "install" "sparkpost"
npm ERR! node v0.10.25
npm ERR! npm  v3.9.2
npm ERR! path /home/francedema/Scrivania/Virtual Vagrant/Centos/nodebb/node_modules/bootstrap-colorpicker
npm ERR! code EISGIT
npm ERR! git /home/francedema/Scrivania/Virtual Vagrant/Centos/nodebb/node_modules/bootstrap-colorpicker: Appears to be a git repo or submodule.
npm ERR! git     /home/francedema/Scrivania/Virtual Vagrant/Centos/nodebb/node_modules/bootstrap-colorpicker
npm ERR! git Refusing to remove it. Update manually,
npm ERR! git or move it out of the way first.
npm ERR! Please include the following file with any support request:
npm ERR!     /home/francedema/Scrivania/Virtual Vagrant/Centos/nodebb/npm-debug.log

有人可以帮助我吗?

您应该与package.json文件同一目录安装NPM软件包。查看您的代码,您将需要做类似的事情:

cd "/home/francedema/Scrivania/Virtual Vagrant/Centos/nodebb"
npm install --save sparkpost

--save选项会将SparkPost添加到您的软件包。

由于bootstrap-colorpicker软件包,看起来您可能还会遇到一些错误。我会尝试先从正确的目录安装,看看是否有帮助。

相关内容

  • 没有找到相关文章

最新更新