美文网首页
ReacNative 安装各种问题

ReacNative 安装各种问题

作者: 我有一只小毛驴_从来都不骑 | 来源:发表于2017-09-24 17:35 被阅读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,这时候又开始报错

  • npm 没有被发现
    我关闭终端,重新 npm -v 还是找不到npm 我怀疑我安装的npm不是一个全局的,我之前是通过安装的node.js 自动安装的npm
    解决方案:我把之前安装的node.js 跟 npm全部都删除,再重新装一遍
    进入到 /usr/你的用户名/local/lib文件下 删除node_modules 文件
    删除node.js 参考:http://www.jianshu.com/p/1c871b462e14
    安装node.js
使用 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 就可以查看版本号

  • npm 报Failed to parse package.json data.
    这个是说 工程中package.json 格式不对,仔细查找,json格式没问题啊,当时很是费解
    我重新用reactNative创建一个工程,npm install 没有任何问题,同时"config.h" file not found 这个问题也没有发现

相关文章

网友评论

      本文标题:ReacNative 安装各种问题

      本文链接:https://www.haomeiwen.com/subject/ajnkextx.html