Welcome to the Haskell programming language and the Haskell Tool Stack (Stack)! Stack is a program for developing Haskell projects. It is aimed at Haskellers both new and experienced. It is cross-platform and aims to support fully users on Linux, macOS and Windows.
Stack features:
- Installing the Glasgow Haskell Compiler (GHC) automatically, in an isolated location.
- Installing packages needed for your project.
- Building your project.
- Testing your project.
- Benchmarking your project.
Stack can be installed on most Unix-like operating systems (including macOS) and Windows. It will require at least about 5 GB of disk space, for use with one version of GHC.
!!! info
In addition to the methods described below, Stack can also be installed
using the separate [GHCup](https://www.haskell.org/ghcup/) installer for
Haskell-related tools. GHCup provides Stack for some combinations of machine
architecture and operating system not provided elsewhere. By default, the
script to install GHCup (which can be run more than once) also configures
Stack so that if Stack needs a version of GHC, GHCup takes over obtaining
and installing that version.
=== "Linux"
For most Linux distributions, the easiest way to install Stack
directly (rather than use GHCup) is to command:
~~~text
curl -sSL https://get.haskellstack.org/ | sh
~~~
or:
~~~text
wget -qO- https://get.haskellstack.org/ | sh
~~~
!!! note
The script at [get.haskellstack.org](https://get.haskellstack.org/) will
ask for root access using `sudo`. It needs such access in order to use
your platform's package manager to install dependencies and to install
to `/usr/local/bin`. If you prefer more control, follow the manual
installation instructions in the
[install and upgrade guide](install_and_upgrade.md).
=== "macOS"
From late 2020, Apple began a transition from Mac computers with Intel
processors (Intel-based Mac) to
[Mac computers with Apple silicon](https://support.apple.com/en-gb/HT211814).
=== "Intel-based"
For most Intel-based Mac computers, the easiest way to install Stack
directly (rather than use GHCup) is to command:
~~~text
curl -sSL https://get.haskellstack.org/ | sh
~~~
or:
~~~text
wget -qO- https://get.haskellstack.org/ | sh
~~~
!!! note
The script at [get.haskellstack.org](https://get.haskellstack.org/)
will ask for root access using `sudo`. It needs such access in order
to use your platform's package manager to install dependencies and
to install to `/usr/local/bin`. If you prefer more control, follow
the manual installation instructions in the
[install and upgrade guide](install_and_upgrade.md).
=== "Apple silicon"
Mac computers with Apple silicon have an M1, M1 Pro, M1 Max, M1 Ultra or
M2 chip. These chips use an architecture known as ARM64 or AArch64.
For Mac computers with Apple silicon, the easiest way to install Stack
directly (rather than use GHCup) is to command:
~~~text
curl -sSL https://get.haskellstack.org/ | sh
~~~
or:
~~~text
wget -qO- https://get.haskellstack.org/ | sh
~~~
!!! note
The script at [get.haskellstack.org](https://get.haskellstack.org/)
will ask for root access using `sudo`. It needs such access in order
to use your platform's package manager to install dependencies and
to install to `/usr/local/bin`. If you prefer more control, follow
the manual installation instructions in the
[install and upgrade guide](install_and_upgrade.md).
=== "Windows"
On 64-bit Windows, the easiest way to install Stack directly (rather than
use GHCup) is to download and install the
[Windows installer](https://get.haskellstack.org/stable/windows-x86_64-installer.exe).
!!! info
By default, the Windows installer will set the Stack root to `C:\sr`.
!!! warning
The Windows installer for Stack 2.9.1, 2.9.3 and 2.11.1 (only) will
replace the user `PATH` environment variable (rather than append to it)
if a 1024 character limit is exceeded. If the content of your existing
user `PATH` is long, preserve it before running the installer.
!!! note
Systems with antivirus software may need to add Stack to the list of
'trusted' applications.
=== "Other/direct downloads"
For other operating systems and direct downloads (rather than use GHCup),
see the [install and upgrade guide](install_and_upgrade.md).
If Stack is already installed, you can upgrade it to the latest version by the command:
stack upgrade
!!! note
If you used [GHCup](https://www.haskell.org/ghcup/) to install Stack, you
should also use GHCup, and not Stack, to upgrade Stack.
For an immediate experience of using Stack to build an executable with Haskell, first you need to follow the guide to install Stack.
To start a new project named my-project
, issue these four commands in a
terminal:
stack new my-project
cd my-project
stack build
stack exec my-project-exe
- The
stack new my-project
command will create a new directory, namedmy-project
. It contains all the files needed to start a project correctly, using a default template. - The
cd my-project
command will change the current working directory to that directory. - The
stack build
command will build the template project and create an executable namedmy-project-exe
(on Windows,my-project-exe.exe
). First, if necessary, Stack will download a version of GHC in an isolated location. That won't interfere with other GHC installations on your system. - The
stack exec my-project-exe
command will run (execute) the built executable, in Stack's environment.
For a complete list of Stack's commands, and flags and options common to those commands, simply command:
stack
For help on a particular Stack command, including flags and options specific to
that command, for example stack build
, command:
stack build --help
If you want to launch a run-eval-print loop (REPL) environment, then command:
stack repl
!!! info
`stack ghci` can be used instead of `stack repl`. GHCi is GHC's REPL tool.
People organise Haskell code into packages. If you want to use Stack to install an executable provided by a Haskell package, then all you have to do is command:
stack install <package-name>
The stack new my-project
command in step one should have created the following
files and directories (among others):
.
├── app
│ └── Main.hs
├── src
│ └── Lib.hs
├── test
│ └── Spec.hs
├── my-project.cabal
├── package.yaml
└── stack.yaml
The Haskell source code for the executable (application) is in file Main.hs
.
The executable uses a library. Its source code is in file Lib.hs
.
The contents of my-project.cabal
describes the project's package. That file is
generated by the contents of package.yaml
.
!!! info
If you want, you can delete the `package.yaml` file and update the
`my-project.cabal` file directly. Stack will then use that file.
The contents of stack.yaml
describe Stack's own project-level configuration.
You can edit the source files in the src
directory (used for the library) or
the app
directory (used for the executable (application)).
As your project develops, you may need to depend on a library provided by
another Haskell package. If you do, then add the name of that new package to the
file package.yaml
, in its dependencies:
section.
!!! info
When you use `stack build` again, Stack will use `package.yaml` to create an
updated `my-project.cabal` for you.
If Stack reports that the Stack configuration has no specified version for the
new package, then follow Stack's likely recommended action to add a specific
version of that package your project's stack.yaml
file, in its extra-deps:
section.
That was a really fast introduction on how to start to code in Haskell using Stack. If you want to go further, we highly recommend you read Stack's introductory user's guide.
A complete user's guide to Stack is available, covering all of the most common ways to use Stack. Terms used in Stack's documentation are also explained in the glossary.
Stack is a tool for building Haskell code designed to answer the needs of Haskell users, both new and experienced. It has a strong focus on reproducible build plans, multi-package projects, and a consistent, easy-to-learn set of Stack commands. It also aims to provide the customizability and power that experienced developers need.
Stack does not stand alone. It is built on the great work provided by:
-
The Glasgow Haskell Compiler (GHC), the premier Haskell compiler. Stack will manage your GHC installations and automatically select the appropriate version of GHC for your project.
-
The Cabal build system. Cabal is a specification for defining Haskell packages and a library for performing builds.
!!! info
Cabal is also the name of another tool used for building Haskell code, provided by the `cabal-install` package. This guide distinguishes between them by Cabal (the library) and Cabal (the tool).
-
The Hackage Haskell Package Repository, a repository of Haskell packages providing thousands of open source libraries and applications to help you get your work done.
-
The Stackage package collection, sets of packages from Hackage that are curated. That is, they are regularly tested for compatibility. Stack defaults to using Stackage package sets to avoid problems with incompatible dependencies.
Stack is provided by a team of volunteers and companies under the auspices of the Commercial Haskell group. The project was spearheaded by FP Complete to answer the needs of commercial Haskell users. It has since become a thriving open source project meeting the needs of Haskell users of all stripes.
If you'd like to get involved with Stack, check out the newcomer friendly label on the GitHub issue tracker.
- For answers to frequently asked questions about Stack, please see the FAQ.
- For general questions, comments, feedback and support, please post to the Haskell Community.
- For bugs, issues, or requests, please open an issue.
- When using Stack Overflow, please use the haskell-stack tag.
A guide is provided to help potential contributors to the Stack project.
If you have already installed a version of Stack and the Git application the followings steps should get you started with building Stack from source with Stack:
-
Clone the
stack
repository from GitHub with the command:git clone https://github.com/commercialhaskell/stack.git
-
Change the current working directory to the cloned
stack
directory with the command:cd stack
-
Build the
stack
executable using a preexisting installation of Stack with the command:stack build
-
Once the
stack
executable has been built, check its version with the command:stack exec -- stack --version
Make sure the version is the latest one.
-
In the GitHub repository's issue tracker, look for issues tagged with newcomer friendly and awaiting pull request labels.
If you need to check your changes quickly command:
stack repl
and then, at the REPL's prompt, command:
:main --stack-root=<path_to_root> --stack-yaml=<path_to_stack.yaml> <COMMAND>
This allows you to set a special Stack root (instead of the default Stack root)
and to target your commands at a particular stack.yaml
file instead of the one
found in the current directory.
To uninstall Stack, it should be sufficient to delete:
- the Stack root directory (see
stack path --stack-root
, before you uninstall); - if different, the directory containing Stack's global YAML configuration file
(see
stack path --global-config
, before you uninstall); - on Windows, the directory containing Stack's tools (see
stack path --programs
, before you uninstall), which is located outside of the Stack root directory; and - the
stack
executable file (seewhich stack
, on Unix-like operating systems, orwhere.exe stack
, on Windows).
You may also want to delete .stack-work
directories in any Haskell projects
that you have built using Stack. The stack uninstall
command provides
information about how to uninstall Stack.