Search code examples
haskellyesodhaskell-stack

Executable named yesod not found on path


Getting this issue while trying to run my Yesod application. stack build has already been run and gives no output anymore.

$ stack exec -- yesod devel
Executable named yesod not found on path: ["path/to/app"]

Solution

  • Turns out yeosd-bin needs to be compiled separately.

    Running $ stack build yesod-bin solves the issue.