Learn how to install Haskell locally to solve Exercism's exercises on your own machine
The recommended way of installing Haskell tools is through GHCup.
With GHCup you can manage your installed compilers, project/package managers, and language server.
For doing Exercism exercises you only need Stack.
To install Stack, run the GHCup installation command or script. Follow the defaults but specify that you would like to have Stack installed as well.
Did you by accident skip installation of Stack?
No worries: just run ghcup install stack
afterwards.
GHCup will install
A compiler (GHC: the Glasgow Haskell Compiler)
Strictly speaking you do not need this for Exercism, but it comes in handy when you want to play with GHCi outside of exercise directories.
Cabal
A project/package manager. You do not need this for Exercism.
Stack
The project/package manager that you will use for Exercism. It will make sure you have the right compiler and libraries for each individual project (exercise).
To check that installation was successful, run either of the commands
ghcup list
: success looks like a long list of tool versions, with Stack marked as installedstack --version
: success looks like Version 2.7.5, Git revision ...
Stack will automatically download and install GHC when it is required. You can start the installation and verify by running the following commands in a terminal:
# Note: it only makes sense to run Stack
# inside projects, so navigate into an
# exercise directory first!
exercism download --exercise=hello-world --track=haskell
cd ~/Exercism/haskell/hello-world
stack ghc -- --version
If this outputs something like
The Glorious Glasgow Haskell Compilation System, version 8.8.4
then GHC is installed correctly.
Haskell support is provided by the Haskell Language Server (HLS). Language support is not required, but strongly recommended.
Just get the Haskell extension for Visual Studio Code. It will use GHCup to install HLS automatically, after which you'll be all set.
Note: with freshly downloaded exercises, HLS may have trouble starting up.
If this happens, run stack test
and restart the language server.
See the HLS documentation on editor configuration.
You might need to install HLS manually.
To do so, run ghcup install hls
.