在Windows 10上的Ubuntu上的bash上安装swift 4

时间:2017-11-13 18:47:02

标签: swift windows ubuntu

我尝试在Windows 10上的Ubuntu上使用bash安装Swift 4

我的Ubuntu版本: me@DESKTOP:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 16.04.3 LTS Release: 16.04 Codename: xenial

我做了apt-get upgradeapt-get update

我按照Linux步骤here:安装Swift 4

最终我最终得到了错误: me@DESKTOP:~$ swift /home/me/swift4/swift-4.0.2-RELEASE-ubuntu16.04/usr/bin/lldb: error while loading shared libraries: libpython2.7.so.1.0: cannot open shared object file: No such file or directory

我安装了python2: me@DESKTOP:~$ python2 --version Python 2.7.12

我想知道如何让它发挥作用。

1 个答案:

答案 0 :(得分:0)

安装libpython2.7成功解决了该错误

$ apt-get install libpython2.7

但是由于kernel permissions issue,它仍然无法启动swift repl。
使用docker image(或类似OP的Virtual Box)是更好的选择。

参考

https://bugs.swift.org/browse/SR-2743