Search code examples
haskellcabalquickcheck

It is a member of the hidden packageQuickCheck-1.2.0.0, How to load hs file


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!!


Solution

  • 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.