无法安装ghc-exactprint

时间:2019-01-27 13:05:10

标签: haskell ubuntu-18.04

我尝试按以下方式安装几个软件包:

private _canceledByEsc = false;

@HostListener('window:keyup', ['$event'])
handleKeyboardEvent(event: KeyboardEvent) {
    if (event.key === 'Escape') {
        this._canceledByEsc = true;
        document.dispatchEvent(new Event('mouseup'));
    }
}

handleDrop() {
    if (!this._canceledByEsc) {
        // probably just return and don't do any array manipulations
    }
}

,并且出现以下错误:

stack install apply-refact hlint stylish-haskell hasktags hoogle

我在做什么错了?

1 个答案:

答案 0 :(得分:3)

看起来libtinfo-dev软件包需要通过apt或使用的任何软件包管理器进行安装。