ios无法使用Pod安装依赖项

时间:2016-12-06 07:13:58

标签: ios git cocoa cocoapods

我正在尝试使用Pod安装AFNetworking。我创建了一个pod文件,当我运行pod install时,我得到了:

  

无法使用网址添加来源   https://github.com/CocoaPods/Specs.git名为master-1。你可以试试   在~/.cocoapods/repospod 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'

有什么建议吗?

3 个答案:

答案 0 :(得分:0)

尝试删除此行:  source 'https://github.com/CocoaPods/Specs.git'

<强>更新

当您有互联网连接时,请手动运行pod init

转到〜/ .cocoapods / repos 并运行git clone https://github.com/CocoaPods/Specs.git master

如果问题仍然存在,请参阅此处 issue.

答案 1 :(得分:0)

请更新ios版本

namespace App;

use Illuminate\Database\Eloquent\Model;

class Resource extends Model
{

    protected $table='resource';
    public $fillable=['resname'];
}

请使用更新的AFNetworking 3.0 并添加

platform :ios, '7.1'

答案 2 :(得分:0)

只需删除主存储库:

rm -fR ~/.cocoapods/repos/master

然后,运行:

pod setup