#Haskell, Stack and Intellij IDEA IDE setup tutorial how to get started Upon completion you will have a sane, productive Haskell environment adhering to best practices.
- Haskell is the programming language you want to learn.
- Stack is tool for Haskell projects. (similar tools for other languages include Maven, Gradle, npm, RubyGems etc)
- Intellij IDEA IDE is a popular IDE.
Don't install Haskell or Stack using your OS package manager. (if Haskell or Stack are already installed through your package manager, I suggest you purge them from your system entirely before proceeding)
Instead, download Stack from http://docs.haskellstack.org/en/stable/install_and_upgrade/#linux and extract it into ~/.local/bin (ie the complete path to stack should be ~/.local/bin/stack) and add ~/.local/bin to PATH. (adding a folder to PATH is beyond the scope of this tutorial, search and you will find)
Go to the folder where you want to create your Haskell project and run
stack new my-project
cd my-project
stack setup
stack build
stack exec my-project-exeStack installs Haskell (ghc) to ~/.stack/programs/x86_64-linux/ghc-7.10.3/bin/ghc, project-specific dependencies to appropriate locations inside the project, and builds and runs the project.
- Make sure you're not inside a Haskell project folder and run
stack install hlint stylish-haskell ghc-modto install tools required by the IDE plugin for Haskell. (they will be installed to ~/.local/bin)
- Download and Intellij IDEA IDE from http://www.jetbrains.com/idea and extract it to some appropriate folder.
- Start IntelliJ up and install the plugin
Intellij-Haskell. (NOTE there are a number of different mutually exclusive Haskell plugins- they can't be installed simultaneously. If other Haskell plugins are already installed, uninstall them before installing theIntellij-Haskellplugin) - Restart IntelliJ.
- Settings | Other | Haskell | add the respective paths to the tools (eg for ghc-mod
~/.local/bin/ghc-mod) - File | New | Project | select Haskell module and tick the Haskell box | Next | create GHC SDK using path to GHC binaries
~/.stack/programs/x86_64-linux/ghc-7.10.3/bin| Project name: my-project, Project location:path to root of my-project - Project Structure | Modules | mark app and src as Sources, test as Tests
- Tools | Add Haskell package dependencies (this is what enables viewing docs while coding)
- Project Structure | Modules | mark ideaHaskellLib as Sources
Auto-completion, Open "class" ctrl+n, Go to declaration ctrl+b etc should now work. Try eg placing the caret on the line putStrlLine and pressing ctrl+b to try it out.
One of the advantages of Haskell is the interactive interpreter. Go to path to root of my-project and run
stack ghcito fire up the interpreter, then
:load Main
mainto interactively load the Main module and call the main function. New functions can also be defined and tried out interactively. It's a faster development flow than writing the source code in the source code files and building running the project all the time.
As previously seen, there are other IntelliJ plugins for Haskell that may or may not be better than, have more features etc than the Intellij-Haskell plugin, but I've been unable to get any of them running. Which brings us to...
I tried several times to pick up Haskell, but always gave up, not due to anything to do with the language itself, but due to not being able to set up a sane, productive environment. After lots of time, energy and frustration it appears as if I've finally figured out how to do it. This Gist is for my own future reference, but I hope others will find it useful as well, and that others won't have to go through what I went through just in order to get started.


FYI, I have released new version of IntelliJ Haskell plugin which mainly depends on Stack and Intero.