我正在尝试安装一个Pod (RegexKitLite),但是我遇到了这个错误。所有其他pods都在正常安装。这是我的Pods文件的样子:
# Uncomment this line to define a global platform for your project
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
inhibit_all_warnings!
def import_pods
pod 'Facebook-iOS-SDK', '3.23.0'
pod 'CardIO', '5.0.2'
pod 'CustomBadge', '3.0.0'
pod 'GoogleAnalytics-iOS-SDK', '3.10'
pod 'GoogleConversionTracking', '3.2.0'
pod 'NSData+Base64', '1.0.0'
pod 'RegexKitLite', '4.0'
pod 'SMXMLDocument', '1.0.1'
pod 'SBJson', '4.0.1'
pod 'XMLDictionary', '1.4'
pod 'iAppInfos', '0.2.1'
pod 'BSKeyboardControls', '2.2'
pod 'FXBlurView', '1.6.3'
end
target :my_App do
import_pods
end这就是错误:
[!] Error installing RegexKitLite
[!] /usr/bin/svn export --non-interactive --trust-server-cert --force https://svn.code.sf.net/p/regexkit/code/RegexKitLite -r 69 /var/folders/d3/0wsknn2176q15z_yxfc_m0q5mc3l6_/T/d20150717-858-1i4ram4
svn: E175002: Unable to connect to a repository at URL 'https://svn.code.sf.net/p/regexkit/code/RegexKitLite'
svn: E175002: OPTIONS of 'https://svn.code.sf.net/p/regexkit/code/RegexKitLite': could not connect to server (https://svn.code.sf.net)我该怎么办?
致以问候!
发布于 2015-07-17 18:43:16
当站点关闭时,您可以尝试RegexKitLite-NoWarning pod。这是RegexKitLite的一个分支,用于修复编译警告。
发布于 2015-07-17 18:34:52
我不认为你能做任何事,只能等待。https://svn.code.sf.net已关闭。当然,您也可以联系管理员。网站上写道:
sourceforge.net网站暂时处于静态脱机模式。在主网站恢复服务之前,只有非常有限的一组项目页面可用。
https://stackoverflow.com/questions/31473734
复制相似问题