美文网首页swift
替换Cocoapods源

替换Cocoapods源

作者: 对酒当歌的夜 | 来源:发表于2017-08-16 14:25 被阅读129次

    其实可以直接看最后
    cocoapods安装首先是替换gem源换成taobao的这样成功安装CocoaPods

    pod默认的源是github的,有的东西太慢或者下载失败
    方法一 v-p-n
    方法二 换源

    找了好久找到国内镜像,之前好多都是coding上的,不能大于1g失效了,
    1.镜像地址
    https://code.aliyun.com/Magi/CocoaPods.git
    https://gitclub.cn/CocoaPods/Specs.git 推荐

    原文:https://coding.net/u/CocoaPods/p/Specs/git

    2.安装方法,网上的转载的用不了.结果显示[!] To setup the master specs repo, please run pod setup.
    新方法参考http://www.cnblogs.com/yfming/p/5965860.html

    pod repo   #查看当前信息
    
    git clone https://gitclub.cn/CocoaPods/Specs.git ~/.cocoapods/repos/master
    
    pod repo update
    
    image.png

    第一步出现坑fatal: destination path '/Users/lxmac/.cocoapods/repos/master' already exists and is not an empty directory.
    方法1先git到一个tmp文件夹在移出来,
    http://blog.csdn.net/zhangti123321/article/details/52020980
    方法2.(推荐)还是先删除之前的master比较好
    先执行

    pod repo remove master
    

    如果遇到报错先新建一个终端在试试报错的命令
    完成以后试试 pod repo
    ///=================================================================
    最后我执行了pod install之后他先执行了pod setup
    看到一堆刷新后最后还是变成了github的源.
    使用pod repo 查看果然地址变成了github的

    解决:写好podFile文件后在前面先加上,也就是运行的时候指定源的地址就好了

    source 'https://gitclub.cn/CocoaPods/Specs.git'
    

    相关文章

      网友评论

        本文标题:替换Cocoapods源

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