0

正在尝试安装

sudo npm install react-datagrid --save
sudo npm install react-datepicker --save

控制台输出

npm ERR! peerinvalid The package react does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer react-datagrid@2.0.2 wants react@>=0.14.0
npm ERR! peerinvalid Peer react-dom@15.0.1 wants react@^15.0.1
npm ERR! peerinvalid Peer input-moment@0.1.0 wants react@^0.14.0
npm ERR! peerinvalid Peer react-datepicker@0.26.0 wants react@^0.14.0

npm ERR! System Linux 3.19.0-56-generic
npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" "react-datagrid" "--save"
npm ERR! cwd /home/shashank/webapps/cms
npm ERR! node -v v0.10.25
npm ERR! npm -v 1.3.10
npm ERR! code EPEERINVALID
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/shashank/webapps/cms/npm-debug.log
npm ERR! not ok code 0

所需的依赖项是已经安装的 react@^15.0.1 可以在 package.json 中看到我确实克服了这个问题。

包.json

  "devDependencies": {
    "babel-core": "^6.7.7",
    "babel-loader": "^6.2.4",
    "babel-preset-es2015": "^6.5.0",
    "babel-preset-react": "^6.5.0",
    "babelify": "^7.2.0",
    "browserify": "^13.0.0",
    "chalk": "^1.1.1",
    "gulp": "gulpjs/gulp#4.0",
    "gulp-cli": "gulpjs/gulp-cli#4.0",
    "gulp-concat": "^2.6.0",
    "gulp-cssnano": "^2.1.1",
    "gulp-htmlmin": "^1.3.0",
    "gulp-if": "^2.0.0",
    "gulp-rename": "^1.2.2",
    "gulp-replace": "^0.5.4",
    "gulp-sourcemaps": "^1.6.0",
    "gulp-uglify": "^1.5.3",
    "gulp-util": "^3.0.7",
    "gulp-watch": "^4.3.5",
    "pretty-hrtime": "^1.0.2",
    "vinyl-buffer": "^1.0.0",
    "vinyl-source-stream": "^1.1.0",
    "watchify": "^3.7.0",
    "yargs": "^4.1.0"
  },
  "dependencies": {
    "gulp-rename": "^1.2.2",
    "moment": "^2.13.0",
    "react": "^15.0.1", 
    "react-datagrid": "^2.0.2",
    "react-dom": "^15.0.1"
  }
}
4

3 回答 3

1

您可以更新解决您问题的最后一个 npm

sudo npm install npm -g
于 2016-06-05T03:17:31.027 回答
0

我能够通过在从 v0.10.25 升级到 v4.4.3 的节点上安装稳定版本来解决此问题

第一步:首先通过找到安装位置删除旧版本的node

$ which node ( Finds the path of installations Eg: /usr/bin/nodejs)
$ sudo rm -rf /usr/bin/nodejs

第 2 步:下载Node的稳定版(我使用的是 node-v4.4.3-linux-x64.tar.gz )

第三步:在 /usr/local/ 中安装 Node 的稳定版本

$ sudo tar -C /usr/local/ --strip-components 1 -xzf node-v4.4.3-linux-x64.tar.gz 

于 2016-05-02T08:18:30.040 回答
0

利用

"react": "^15.0.1 || ^0.14.0"

于 2016-04-29T08:28:07.820 回答