cabalの更新が失敗する
問題:
cabalをインストールした後、実行すると
$ cabal update
このエラーメッセージを表示されます。
Command 'cabal' not found, but can be installed with:
sudo apt install cabal-install
解決方法:
~/.local/bin and ~/.cabal/bin to the PATH を追記します。
.bashrcを開き、下部に次の行を追加します。
export PATH="~/.cabal/bin:$PATH" export PATH="~/.local/bin:$PATH"
変更を保存し、.bashrcファイルを入手します。
$ source .bashrc
これで、cabal updateを実行できるようになります
$ cabal update
> Downloading the latest package list from hackage.haskell.org
...