如何在迦太基上安装旧版本
How to install older version on carthage
我需要 carthage 来进行 运行ning Appium 测试。
Appium 社区仍在努力支持 XCode9.2,我们需要依赖 XCode 8.3.3
OS: MacOS High Sierria
XCode 版本:XCode 8.3.3
Java: 1.9
但是当我 运行 命令 brew install carthage 时,出现以下错误:
Error: Your Xcode (8.3.3) is too outdated.
请参阅下文 link,这意味着 - XCode9 对 Appium 的支持尚未推出
[https://github.com/facebook/WebDriverAgent/issues/639][1]
请同时建议解决。
谢谢
1) 首先一定要删除所有内容:
brew uninstall --force carthage
2) 然后从这里搜索你喜欢的提交:
https://github.com/Homebrew/homebrew-core/search?p=2&q=carthage&type=Commits&utf8=✓
3) 在你的情况下可能是这样的:
https://github.com/Homebrew/homebrew-core/commit/f74d9ba598c9843552450abeb382cacd0e71d4c0
与 Carthage v0.24 相关的一个,它应该符合您使用 Xcode 8.3.3 的要求。
4) 然后获取提交标识符 f74d9ba598c9843552450abeb382cacd0e71d4c0
和 运行:
brew install https://github.com/Homebrew/homebrew-core/raw/f74d9ba598c9843552450abeb382cacd0e71d4c0/Formula/carthage.rb
我遇到了同样的问题,但无法使用 brew install
。我在尝试这样做时一直收到 404 错误。
为了获得旧版本,我从 repo 克隆了 Carthage 项目,将我的工作副本更改为我需要的指定版本标签和 运行 make install
。这有效 :D
我需要 carthage 来进行 运行ning Appium 测试。 Appium 社区仍在努力支持 XCode9.2,我们需要依赖 XCode 8.3.3 OS: MacOS High Sierria XCode 版本:XCode 8.3.3 Java: 1.9
但是当我 运行 命令 brew install carthage 时,出现以下错误:
Error: Your Xcode (8.3.3) is too outdated.
请参阅下文 link,这意味着 - XCode9 对 Appium 的支持尚未推出
[https://github.com/facebook/WebDriverAgent/issues/639][1]
请同时建议解决。 谢谢
1) 首先一定要删除所有内容:
brew uninstall --force carthage
2) 然后从这里搜索你喜欢的提交:
https://github.com/Homebrew/homebrew-core/search?p=2&q=carthage&type=Commits&utf8=✓
3) 在你的情况下可能是这样的:
https://github.com/Homebrew/homebrew-core/commit/f74d9ba598c9843552450abeb382cacd0e71d4c0
与 Carthage v0.24 相关的一个,它应该符合您使用 Xcode 8.3.3 的要求。
4) 然后获取提交标识符 f74d9ba598c9843552450abeb382cacd0e71d4c0
和 运行:
brew install https://github.com/Homebrew/homebrew-core/raw/f74d9ba598c9843552450abeb382cacd0e71d4c0/Formula/carthage.rb
我遇到了同样的问题,但无法使用 brew install
。我在尝试这样做时一直收到 404 错误。
为了获得旧版本,我从 repo 克隆了 Carthage 项目,将我的工作副本更改为我需要的指定版本标签和 运行 make install
。这有效 :D