2

如何在 Windows 8.1 上安装 nodejs 依赖项?我在 c:/program files/nodejs 下安装了 nodejs

当我发出npm install命令时,我收到以下错误:

> cd myproject
Current working directory is 'C:\wamp\www\laravel\myproject'.

> "C:\Program Files\nodejs\npm.cmd" install
npm WARN package.json @ No repository field.

> node-sass@2.0.1 install C:\wamp\www\laravel\myproject\node_modules\laravel-elixir\node_modules\gulp-sass\node_modules\node-sass
> node scripts/install.js


> node-sass@2.0.1 postinstall C:\wamp\www\laravel\myproject\node_modules\laravel-elixir\node_modules\gulp-sass\node_modules\node-sass
> node scripts/build.js

`win32-x64-node-0.12` exists; testing
Binary is fine; exiting
npm ERR! Windows_NT 6.3.9600
npm ERR! argv "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install"
npm ERR! node v0.12.0
npm ERR! npm  v2.5.1
npm ERR! path C:\wamp\www\laravel\myproject\node_modules\laravel-elixir\node_modules\gulp-ruby-sass\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\unique-stream\node_modules\es6-set\node_modules\d\package.json
npm ERR! code ENOENT
npm ERR! errno -4058

npm ERR! enoent ENOENT, open 'C:\wamp\www\laravel\myproject\node_modules\laravel-elixir\node_modules\gulp-ruby-sass\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\unique-stream\node_modules\es6-set\node_modules\d\package.json'
npm ERR! enoent This is most likely not a problem with npm itself
npm ERR! enoent and is related to npm not being able to find a file.
npm ERR! enoent 

npm ERR! Please include the following file with any support request:
npm ERR!     C:\wamp\www\laravel\myproject\npm-debug.log  

任何人都可以提供有关如何使其在 Windows 8.1 上运行的说明吗?该npm install命令在以下目录中发出C:\wamp\www\laravel\myproject- 该目录具有以下 package.json 文件:

{
    "devDependencies": {
      "gulp": "^3.8.8",
      "laravel-elixir": "*"
    }
}  
4

1 回答 1

1

看来 npm 无法在您的依赖项的依赖项之一中找到 package.json 文件。

使用你的 package.json 文件并运行它对我来说很好,npm install所以我建议删除 node_modules 文件夹并npm install再次运行命令。

运行npm installnpm 在当前目录中查找 package.json 时,似乎错误是由于您运行命令的目录中没有 package.json 文件。

npm install {package}如果您没有 package.json 文件,您也可以运行以在当前目录中安装包。在节点核心目录中添加-g全局安装包的选项。

于 2015-03-23T14:39:57.340 回答