首页 > 代码库 > create-react-app 创建项目遇到的问题

create-react-app 创建项目遇到的问题

使用create-react-app创建项目,出现错误:

AttributeError: ‘MSVSProject‘ object has no attribute ‘iteritems‘ gyp ERR! configure error gyp ERR! stack Error: gyp failed with exit code: 1

。。。。

忘了截图了

出现问题的环境是:Node-v6.10.2  npm-v5.0.3

谷歌了下,在github上node-gyp issue上看到出现同样问题的,应该是npm版本的问题

回退npm版本

npm install -g npm@3.8.9

在用create-react-app,成功

 

create-react-app 创建项目遇到的问题