学习交流:https://gitee.com/potato512/Learn_ReactNative
react-native学习交流QQ群:806870562
刚开始学习react-native跨平台的开发学习,跟着react-native中文网(https://reactnative.cn)的教学一步一步安装配置好环境,也初始化创建了项目,在调用命令运行的时候,却让我傻眼了,模拟器爆红~~~。
Watchman: watchman --no-pretty get-sockname returned with exit code=null,signal=SIGABRT,stderr= 2018-05-08T16:30:39,075: [cli] Failed to open /Users/zhangshaoyu/Library/LaunchAgents/com.github.facebook.watchman.plist for write: Not a directory
原来是对应的目录存在,实际上存在的是一个plist文件。
问过度娘,查了谷歌,在stackoverflow.com上找到了答案(https://stackoverflow.com/questions/40514691/watchman-library-launchagents-com-github-facebook-watchman-plist-for-write-not)。
解决过程如下:
1、进入对应目录,发现存在的文件LaunchAgents是一个指向其他文件快捷方式,而不是目录;
3、删除快捷方式LaunchAgents;
4、创建目录LaunchAgents;
5、进入目录LaunchAgents;
6、复制被指向的文件A到该目录LaunchAgents下
7、调用命令 react-native run-ios 重新运行项目(成功)