Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了安装ghcjs,我升级到了 Ubuntu 16.04
要求没有问题。 alex以及happy自动安装的位置。然后:
alex
happy
$ git clone https://github.com/ghcjs/ghcjs.git $ cabal install ./ghcjs
但是,我不能从终端调用 ghcjs。也许它不在PATH中?
$ ghcjs-boot --dev ghcjs: command not found
如何添加到路径?
cabal$HOME/.cabal/bin在类似 Linux 的系统上安装二进制文件。要将其添加到您的路径中,您可以放置
cabal
$HOME/.cabal/bin
PATH="$PATH:$HOME/.cabal/bin"
在您的 shell 配置文件中(~/.bashrc如果您使用的是 Bash)。
~/.bashrc