美文网首页
2021-06-20最新安装cocoapods

2021-06-20最新安装cocoapods

作者: 霜华年 | 来源:发表于2021-06-20 19:47 被阅读0次
    Macos10.15.7和Xcode12.4
    // 查看ruby源
    gem sources -l
    
    
    // 替换ruby源
    gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
    
    // 替换为:https://gems.ruby-china.com/ 
    
    // 安装 cocoapods
    sudo xcrun gem install cocoapods --source http://rubygems.org
    
    // 查看 pod 版本
    pod --version
    
    // 更新pod  最新版的MacOS Catalina系统命令行执行pod setup命令直接结束啦;
    莫着急,我们手动安装本地库,速度绝对快
    git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos
    
    // 另一种更新pod  【推荐:翻墙】
    git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/trunk
    
    xcode项目使用cocoapods 安装第三方
    cd 项目路径
    
    vim Podfile
    
    
    platform :ios, '9.0'
    target 'Test01' do
        pod 'AFNetworking'
    end
    
    pod install
    

    相关文章

      网友评论

          本文标题:2021-06-20最新安装cocoapods

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