我尝试在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 upgrade
和apt-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
我想知道如何让它发挥作用。
答案 0 :(得分:0)
安装libpython2.7
成功解决了该错误
$ apt-get install libpython2.7
但是由于kernel permissions issue,它仍然无法启动swift repl。
使用docker image(或类似OP的Virtual Box)是更好的选择。