Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When run cabal install hoogle, i get the following:

setup: The program happy version >=1.17 is required but it could not be found
cabal: Error: some packages failed to install
haskell-src-exts-1.13.3 failed during the configure step the exeption is ExitFailure 1

$ghc -V
The Glorious Glasgow Haskell Compilation System, version 7.4.1

How to fix such a problem ?

Sincerely!

share|improve this question

1 Answer

up vote 2 down vote accepted

instead of cabal install hoogle, run cabal install alex happy && cabal install hoogle

many packages on hackage require alex and happy, so it is good idea to install them after cabal update

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.