ReacNative 安装各种问题

2017-09-24  本文已影响75人  我有一只小毛驴_从来都不骑

第一个问题

第一次安装node.js 我是用的nvm来安装的

安装nvm
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
安装node.js
nvm install node && nvm alias default node
一般来说  安装完node.js就自动安装了npm
安装reactNative
npm install -g react-native-cli
初始化项目
react-native init AwesomeProject

打开iOS的项目用Xcode 运行 出问题了

'boost/iterator/iterator_adaptor.hpp' file not found
这是因为
node_modules/react-native/third-party   目录下的文件不完整

解决方案


然后进入/Users/你的用户名/.rncache

参考地址:http://vanessa.b3log.org/articles/2017/06/12/1497235254333.html
这里有最新的.rncache安装包,下载下来把压缩包放入到.rncache 文件下,把压缩包解压,解压的文件放入到工程中的 third-party中,运行程序,'boost/iterator/iterator_adaptor.hpp' file not found 这个错误没有了
,又有新的错误

第二个问题

提示 "config.h" file not found

网上的答案是

修改pakage.json 测试版本:

"react": "16.0.0-alpha.12",

"react-native": "0.45.0"

切换成下面的版本就可以了:

"react": "16.0.0-alpha.6",

"react-native": "0.44.3"

然后保存重新运行npm install

在终端cd到自己的工程目录,运行运行npm install,这时候又开始报错

使用 Homebrew 安装 Node.js
$ brew update
$ brew install node
一般 Node modules 通常被安装在每个项目的本地文件夹 node_modules, 但有几个包推荐你安装在全局:
$ npm install -g coffee-script
$ npm install -g less
$ npm install -g grunt-cli
$ npm install -g gulp
查看 npm 安装的内容:
$ npm list     # 本地
$ npm list -g  # 全局

参考:https://aaaaaashu.gitbooks.io/mac-dev-setup/content/Node.js/index.html
做完这个 关闭终端 重新输入 npm -v 就可以查看版本号

上一篇 下一篇

猜你喜欢

热点阅读