解决pod install libwebp 报错

[!] Error installing libwebp
[!] /usr/bin/git clone https://chromium.googlesource.com/webm/libwebp /var/folders/kz/swf2m0ds52l_g_ly5nz8vxmw0000gn/T/d20210623-14185-37xfeu --template= --single-branch --depth 1 --branch v1.1.0

Cloning into '/var/folders/kz/swf2m0ds52l_g_ly5nz8vxmw0000gn/T/d20210623-14185-37xfeu'...
fatal: unable to access 'https://chromium.googlesource.com/webm/libwebp/': Failed to connect to chromium.googlesource.com port 443: Operation timed out

image.png

原因: https://chromium.googlesource.com/webm/libwebp/ 这个地址连接不上,报错的版本为1.1.0 (这个是报错位置最后)

解决步骤
1、command + shift + G 前往 "~/.cocoapods/repos/edu-git-cocoapods-specs" 进入 edu-git-cocoapods-specs 文件夹,依次点击Specs-->1-->9-->2→libwebp,找到报错版本,修改内部git项

"source": {
"git":"https://github.com/webmproject/libwebp.git",
"tag": "v1.1.0"
},

  1. 重点是要找的libwebp 的位置 ,~/.cocoapods/repos/ 这个地址基本固定。
    edu-git-cocoapods 这个地方根据自己的工程然后找的 libwebp 的位置放的不同这个地址不同 然后找的specs 然后 Specs-->1-->9-->2→libwebp
    3.修改 source 里的 git 对应 https://github.com/webmproject/libwebp.git
    image.png

    image.png

    "source": {
    "git":"https://github.com/webmproject/libwebp.git",
    "tag": "v1.1.0"
    },

你可能感兴趣的:(解决pod install libwebp 报错)