我正在尝试使用Pod安装AFNetworking。我创建了一个pod文件,当我运行pod install
时,我得到了:
无法使用网址添加来源
https://github.com/CocoaPods/Specs.git
名为master-1
。你可以试试 在~/.cocoapods/repos
或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 :(得分: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