【问题标题】:Can't import packages using Swift 4 Package Manager无法使用 Swift 4 包管理器导入包
【发布时间】:2017-12-14 20:18:53
【问题描述】:

尝试在我的机器上使用 Xcode-beta (v9) 测试 Swift 4,但在将包导入测试项目时遇到问题:

  • 使用swift package init --type executable启动项目
  • 更改了Package.swift并添加了2个项目进行试用:

Package.swift

// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
    name: "sampleproject",
    dependencies: [
        // Dependencies declare other packages that this package depends on.
        // .package(url: /* package url */, from: "1.0.0"),
        .package(url: "https://github.com/IBM-Swift/Kitura.git", from: "1.7.6"),
        .package(url: "https://github.com/Alamofire/Alamofire.git", from: "4.5.0")
    ],
    targets: [
        // Targets are the basic building blocks of a package. A target can define a module or a test suite.
        // Targets can depend on other targets in this package, and on products in packages which this package depends on.
        .target(
            name: "sampleproject",
            dependencies: []),
    ]
)
  • 运行swift build && swift package generate-xcodeproj
  • 当我在 Xcode-beta(v9) 中打开项目并尝试导入 Kitura 或 Alamofire 时,我收到 No such module Kitura/Alamofire 错误消息
  • 在终端中运行 swift build 会产生以下错误:

编译 Swift 模块“investprosto”(1 个来源) /Users/username/Projects/sampleproject/Sources/sampleproject/main.swift:1:8: 错误:没有这样的模块'Kitura'导入Kitura ^ 错误:终止(1):/Applications/Xcode- beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift- build-tool -f /Users/username/Projects/sampleproject/.build/debug.yaml

Dependencies 虚拟文件夹包含具有相同包名的目录,但它们是空的。但是,.build\checkouts.build\repositories 包含包文件夹和相应的文件。

我的系统配置中是否缺少某些内容?

【问题讨论】:

    标签: swift xcode macos package-managers swift4


    【解决方案1】:

    原来我还必须将依赖项包含到 Package.swift 的 .target 中:

    .target(named: "sampleproject", dependencies: ["Kitura", "Alamofire"])
    

    然后重新构建项目。

    【讨论】:

    【解决方案2】:

    即使您需要将target 添加到Package.swift 中,有时这还不够。我已通过删除.build 目录和文件Package.resolved,然后运行swift build 或从Xcode 构建来解决此问题。构建命令没有获取包,因为它已经在 resolved 文件中,但是如果你删除 .build 目录,它变得毫无意义。您可以通过检查 Xcode 中的 Dependencies 目录来验证它,如果出现类似 No such package/module

    的错误,它将为空

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2018-09-23
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-01-11
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多