installed QuickCheck,

i install again cabal install QuickCheck-1.2.0.0

and load again and has error

Could not find module Test.QuickCheck.Batch': It is a member of the hidden packageQuickCheck-1.2.0.0'.

It is hidden package, How to do?

ghc -o tryprog hello.hs -package QuickCheck-1.2.0.0 : cannot satisfy -package QuickCheck-1.2.0.0 (use -v for more information)

besides this error, how to load .hs file with package quickcheck-1.2.0.0?

added 50 points for this question

I sincerely beg for your help on this loading problem!!

link|improve this question

Are you getting this error trying to build your project with Cabal? – hammar Apr 14 '11 at 17:19
I load .hs file having this error, not build project with cabal – MFLDSHasdjfkhssnifferANCLhdlsk Apr 15 '11 at 1:02
feedback

3 Answers

up vote 5 down vote accepted
+25

You can hide or expose packages with the ghc-pkg command as in ghc-pkg expose QuickCheck-1.2.0.0 and ghc-pkg hide QuickCheck-2.4 and etc.

link|improve this answer
You are deserved to get 50 points – MFLDSHasdjfkhssnifferANCLhdlsk Apr 20 '11 at 14:40
feedback

Test.QuickCheck.Batch is a quickcheck version 1.x module and you likely installed a more recent, 2.x, version of quickcheck. As usual, you can find the documentation on hackage.

link|improve this answer
How to uninstall current version of QuickCheck and install QuickCheck version 1.X – MFLDSHasdjfkhssnifferANCLhdlsk Apr 14 '11 at 14:49
it said hidden package – MFLDSHasdjfkhssnifferANCLhdlsk Apr 14 '11 at 15:00
without remove current version, i install 1.2.0.0 – MFLDSHasdjfkhssnifferANCLhdlsk Apr 15 '11 at 1:03
@MFLDSHasdjfkjssnifferANCLhdisk Use command line options to select a version. If you have two versions, QuickCheck-2.4 and QuickCheck-1.2.0.0, then use the command-line arguments "-hide-package QuickCheck-2.4 -package QuickCheck-1.2.0.0" with ghc or ghci. – Heatsink Apr 19 '11 at 13:24
feedback

According to the GHC user's guide you use -package when compiling to specify a package name. According to the error you are getting you should specify '-package QuickCheck-1.2.0.0'.

link|improve this answer
i tried, but have error too, besides compiling directly, can it be loaded in ghci using :load hello.hs? – MFLDSHasdjfkhssnifferANCLhdlsk Apr 19 '11 at 14:29
feedback

Your Answer

 
or
required, but never shown

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