I've been provided with a Setup.hs file, along with another .hs file that contains the source code. Whenever I try to configure the install by the following:

runhaskell Setup.hs configure

I get the error:

Setup: At least the following dependencies are missing: binary >=0.4.0 && <0.6.0, haskeline ==0.6.*

I've since installed these dependencies using cabal, but when I try to run the Setup configure command again, I get the same error. I'm completely new to Haskell - is there another step I'm missing after doing a cabal install before trying to run Setup again?

link|improve this question

0% accept rate
What is the output of runhaskell --version? – Edward Z. Yang Dec 10 '10 at 11:21
"runghc 6.12.3" – mawhidby Dec 11 '10 at 2:30
feedback

1 Answer

How did you install the packages? If you installed them with the --userflag, then you also need to configure with the --user flag.

You can verify that the packages are installed by running ghc-pkg list binary and ghc-pkg list haskeline. It will list the installed package versions matching that name along with where they are installed.

link|improve this answer
I installed the packages through cabal. I've verified that they are installed. Here's the output from that: "mawhidby$ ghc-pkg list binary /Library/Frameworks/GHC.framework/Versions/612/usr/lib/ghc-6.12.3/package.conf.d /Users/mawhidby/.ghc/i386-darwin-6.12.3/package.conf.d binary-0.5.0.2 mawhidby$ ghc-pkg list haskeline /Library/Frameworks/GHC.framework/Versions/612/usr/lib/ghc-6.12.3/package.conf.d /Users/mawhidby/.ghc/i386-darwin-6.12.3/package.conf.d haskeline-0.6.3.2" – mawhidby Dec 10 '10 at 7:11
@mawhidby: The packages are installed in your user database(/Users/mawhidby/...), but Cabal only searches the global database by default. You need to add the --user flag when you configure. – Heatsink Dec 10 '10 at 20:11
Ok, thanks, I'll that a shot. – mawhidby Dec 11 '10 at 2:31
feedback

Your Answer

 
or
required, but never shown

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