我想用Swift调用Python,所以我下载了PythonKit并构建了它,但是得到了以下错误消息。如果我添加PythonKit依赖项,它将显示“Segmentation fault 11”。有人知道怎么解决吗?或者有其他方法可以用Swift调用Python?
https://github.com/pvieito/PythonKit
快跑
编译Swift模块“PythonKit”(4个来源)
/PythonKit master/PythonKit/Python.swift:82:2:错误:未知
属性“dynamicCallable”@dynamicCallable^
/PythonKit master/PythonKit/Python.swift:82:2:错误:未知
属性“dynamicCallable”@dynamicCallable^
/PythonKit master/PythonKit/Python.swift:128:26:警告:
“CustomPlaygroundQuickLookable”已弃用:
CustomPlaygroundQuickLookable将在将来的Swift中删除
版本。要自定义类型在操场中的显示方式,请使用
取而代之的是CustomPlaygroundDisplayConvertible。分机PythonObject:
CustomPlaygroundQuickLookable公司{
如果添加

.package(url: "https://github.com/pvieito/PythonKit.git", .branch("master"))

生成时显示“分段错误11”。

最佳答案

现在使用Swift 5.0就可以了!谢谢!

关于python - 使用PythonKit快速调用Python,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53694540/

10-13 08:39