我尝试按照一些关于Realm和iOS9的教程,我需要安装Realm但是在创建pod init文件并添加此代码后:
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
# Uncomment this line if you're using Swift
# use_frameworks!
target 'RealmTasks' do
use_frameworks!
pod 'RealmSwift'
end
我试着做
pod install
但我收到此错误
Updating local specs repositories
Analyzing dependencies
Downloading dependencies
Installing Realm (0.96.2)
[!] /bin/bash -c
set -e
sh build.sh cocoapods-setup
core is not a symlink. Deleting...
Downloading dependency: core 0.94.0
Downloading core failed. Please try again once you have an Internet connection.
我在Github上发现了一些关于它的事情https://github.com/realm/realm-cocoa/issues/2446,它提到了服务器问题,最后的评论说要直接下载最后一个版本。我试着用这个:
$ curl -f -L --verbose "https://static.realm.io/downloads/core/realm-core-0.94.0.tar.bz2" -o $TMPDIR/core_bin/core-0.94.0.tar.bz2
但是,我得到同样的错误...... 有任何想法吗??还有另外一种方法吗?请。先谢谢
答案 0 :(得分:1)
尝试以下两种方法之一。
1)清理Xcode缓存。菜单>产品>清洁
2)删除临时下载文件夹。在终端运行(rm -rf / tmp / core_bin)并通过" pod install"
答案 1 :(得分:0)
您应首先通过网址下载核心:
curl https://static.realm.io/downloads/core/realm-core-1.0.1.tar.bz2 -O
mkdir $TMPDIR/core_bin
mv realm-core-1.0.1.tar.bz2 $TMPDIR/core_bin