我有安装cococapods的问题。我在终端中完成了以下步骤:
~sudo gem update --system
~sudo gem install cocoapods
之后
~pod setup
我有此错误消息
MacBook-Pro-Aleksandr:~ aleksandrkarpov$ pod setup
Setting up CocoaPods master repo
[!] /usr/bin/git clone https://github.com/CocoaPods/Specs.git master --depth=1
Cloning into 'master'...
fatal: unable to access 'https://github.com/CocoaPods/Specs.git/': Proxy CONNECT aborted
我以前用cocoapods工作过,没关系。在这种情况下,我不知道该怎么做。有人可以帮帮我吗?
答案 0 :(得分:4)
我找到了解决方案here。
我只在终端写道:
git config --global http.proxy
git config --global --unset http.proxy
它解决了我的问题。