美文网首页
(React Native新创建的项目无法运行)Unable t

(React Native新创建的项目无法运行)Unable t

作者: 默默奋斗的木头人 | 来源:发表于2019-08-28 17:14 被阅读0次

    最新创建的React Native项目,对于ios需要Pod管理工具
    最开始可以直接使用React Native的官方推荐的Pod安装方法:
    https://reactnative.cn/docs/getting-started.html

    image.png

    安装过程中,可能会出现如下问题:

    pod[!] Unable to add a source with url `https://github.com/CocoaPods/Specs.git` named `master`.You can try adding it manually in `~/.cocoapods/repos` or via `pod repo add`.
    

    解决方案:

    pod repo add master https://github.com/CocoaPods/Specs.git
    

    然后提示执行

    pod setup
    

    如果出现

    pod[!] The `master` repo is not a git repo.
    

    进入/users/你的用户名/.cocoapods/repos,删除master文件夹然后执行
    (注意此处的.cocoapods隐藏文件夹)

    pod setup
    

    如果是安装多个Xcdoe,还需要选择Xcode的路径

    sudo xcode-select -switch /Applications/Xcode.app/
    

    在终端里输入下方命令可以知道Xcode的路径:

    xcode-select -p
    

    最后需要注意的是用.xcworkspace的文件打开iOS项目:


    image.png

    相关文章

      网友评论

          本文标题:(React Native新创建的项目无法运行)Unable t

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