Swift 包管理器未安装
Swift Package Manager Not Installing
因此,如果您导航 here, you'll find instructions saying that the package manager is bundled in the downloads on this page.
它说我可以检查:
swift build --help
但我唯一的输出是:
:0: error: no such file or directory: 'build'
我已经下载并安装了两个安装包。我可以看到这里安装了工具链。 (无奈之下我也安装了之前的版本)
说明不是很明确,在一个 IDE 的世界里,我还没有体验过以这种方式安装我自己的语言。我在这个过程中有什么明显的遗漏吗?
您是否设置了 PATH 环境变量以映射到正确的 Swift?
swift --version
应该显示
Apple Swift version 2.2-dev (LLVM 46be9ff861, Clang 4deb154edc, Swift 778f82939c)
Target: x86_64-apple-macosx10.9
如果您 运行 是 2.2 之前的 Swift 版本,那么您需要将路径设置为 Swift 2.2 快照安装的新工具链。这可以通过编辑 .bash_profile
并添加
来完成
export PATH=/Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin:$PATH
作为最后一行,然后 source ~/.bash_profile
更新您的设置。
编辑
2015 年 12 月 10 日发布了新快照。 --version
仍然显示 2.2-dev
但显示更新的 (SHA-1?) 哈希值。
Apple Swift version 2.2-dev (LLVM 7bae82deaa, Clang 53d04af5ce, Swift 5995ef2acd)
Target: x86_64-apple-macosx10.9
这些版本也在单个项目级别标记为版本:https://github.com/apple/swift/releases
因此,如果您导航 here, you'll find instructions saying that the package manager is bundled in the downloads on this page.
它说我可以检查:
swift build --help
但我唯一的输出是:
:0: error: no such file or directory: 'build'
我已经下载并安装了两个安装包。我可以看到这里安装了工具链。 (无奈之下我也安装了之前的版本)
说明不是很明确,在一个 IDE 的世界里,我还没有体验过以这种方式安装我自己的语言。我在这个过程中有什么明显的遗漏吗?
您是否设置了 PATH 环境变量以映射到正确的 Swift?
swift --version
应该显示
Apple Swift version 2.2-dev (LLVM 46be9ff861, Clang 4deb154edc, Swift 778f82939c) Target: x86_64-apple-macosx10.9
如果您 运行 是 2.2 之前的 Swift 版本,那么您需要将路径设置为 Swift 2.2 快照安装的新工具链。这可以通过编辑 .bash_profile
并添加
export PATH=/Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin:$PATH
作为最后一行,然后 source ~/.bash_profile
更新您的设置。
编辑
2015 年 12 月 10 日发布了新快照。 --version
仍然显示 2.2-dev
但显示更新的 (SHA-1?) 哈希值。
Apple Swift version 2.2-dev (LLVM 7bae82deaa, Clang 53d04af5ce, Swift 5995ef2acd) Target: x86_64-apple-macosx10.9
这些版本也在单个项目级别标记为版本:https://github.com/apple/swift/releases