React Native项目初始编译错误

时间:2015-07-23 22:32:04

标签: xcode react-native

我创建了一个新的React Native项目并在Xcode中运行它。我在终端中收到以下错误,无法确定如何修复:

ERROR EACCES, permission denied '/Users/andrey.pokrovskiy/.babel.json'
{"errno":3,"code":"EACCES","path":"/Users/andrey.pokrovskiy/.babel.json","syscall":"open"}
Error: EACCES, permission denied '/Users/andrey.pokrovskiy/.babel.json'
at Object.fs.openSync (evalmachine.:438:18)
at Object.fs.writeFileSync (evalmachine.:977:15)
at save (/Users/andrey.pokrovskiy/Desktop/lab/NewiOsApp/node_modules/react-native/node_modules/babel-core/lib/api/register/cache.js:35:19)
at process._tickCallback (node.js:419:13)
at Function.Module.runMain (module.js:499:11)
at startup (node.js:119:16)
at node.js:906:3

我已经尝试过chown文件并寻找解决方案,但没有运气。

与此同时,Xcode抛出了Apple Mach-o链接器错误,里面有25个错误。 我从未使用Xcode,所以不知道这意味着什么。

看似简单的安装对我来说变成了一场噩梦。 任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:4)

我遇到了同样的问题,我通过执行以下命令修复了它:

sudo chmod 777 /Users/xxxx/.babel.json

然后重新启动react-native项目

react-native init awesome-project