运行平台本地:在Ubuntu中构建,收到错误

时间:2017-12-14 17:29:12

标签: linux ubuntu magento platform

运行平台本地:在Ubuntu中构建,接收错误如下。

我已经通过适用于Windows的Linux子系统在Windows 10 Pro 64位上安装了Ubuntu。然后,我安装了LAMP,Composer和Platform.sh CLI。

现在,我已经在我的项目上执行了一个get to out out out out out,并在本地执行构建。但这就是发生的事情:

    @IBAction func websiteButton(_ sender: Any) {

    let websiteURL = ("http://") + JSONurl!

    guard let url = URL(string: websiteURL) else {
        return //be safe
    }

    if #available(iOS 10.0, *) {
        UIApplication.shared.open(url, options: [:], completionHandler: nil)
    } else {
        UIApplication.shared.openURL(url)
    }

}

1 个答案:

答案 0 :(得分:0)

看起来您的本地Ubuntu上没有安装或启用PHP-GD库。尝试安装:

sudo apt-get install php7.0-gd