2016-12-06 67 views
0

我正在嘗試使用Pods安裝AFNetworking。我創建了一個吊艙文件,當我運行pod install我得到:ios無法使用Pods安裝依賴項

Unable to add a source with url https://github.com/CocoaPods/Specs.git named master-1 . You can try adding it manually in ~/.cocoapods/repos or via pod repo add .

我試圖克隆到~/.cocoapods/repos但它給出了一個錯誤:fatal: destination path '.' already exists and is not an empty directory.

我PodFile:

source 'https://github.com/CocoaPods/Specs.git' 
platform :ios, '7.0' 
pod 'AFNetworking', '~> 2.5' 

任何建議?

+0

顯示您的pod文件。 –

回答

0

嘗試刪除這一行: source 'https://github.com/CocoaPods/Specs.git'

更新時間:

運行pod init手動當你有一個互聯網連接。

轉到〜/ .cocoapods /回購和運行git clone https://github.com/CocoaPods/Specs.git master

如果問題仍然存在,請參閱本 issue.

+0

Aftet我得到:無法添加一個名爲'master-1'的URL爲'https://github.com/CocoaPods/Specs.git'的源代碼。 –

+0

你確定刪除了這行嗎? –

+0

是的,我刪除了該行。 –

0

請更新IOS版本

platform :ios, '7.1' 

請使用更新AFNetworking 3.0 並添加

platform :ios, '8.0' 
+0

輸出無變化:無法添加名爲'master-1'的URL爲https:// github.com/CocoaPods/Specs.git的源。 您可以嘗試在'〜/ .cocoapods/repos'或者'pod repo add'手動添加它。 –

+0

請執行以下命令,然後嘗試使用 pod repo remove master和 pod install – Rishi