haskellarchlinuxquickcheckmanjaro

Haskell there are files missing in the QuickCheck-2.11.3 package


I tried running my program which uses Haskell QuickCheck via ghc MyProgramm.hs , but received the following error:

$ ghc Ex2.hs 
[1 of 1] Compiling Ex2              ( Ex2.hs, Ex2.o )

Ex2.hs:21:1: error:
    Could not find module ‘Test.QuickCheck’
    There are files missing in the ‘QuickCheck-2.11.3’ package,
    try running 'ghc-pkg check'.
    Use -v to see a list of the files searched for.
   |
21 | import Test.QuickCheck (
   | ^^^^^^^^^^^^^^^^^^^^^^^^...

I installed stack, ran stack update and stack install QuickCheck without issue but the error persisted. Then, I ran cabal install QuickCheck and got the following errors:

$ cabal install QuickCheck
Resolving dependencies...
Configuring QuickCheck-2.12.4...
Building QuickCheck-2.12.4...
Failed to install QuickCheck-2.12.4
Build log ( /home/username/.cabal/logs/ghc-8.4.3/QuickCheck-2.12.4-3d2YDDqfPBn4BfmTJbpJXK.log ):
cabal: Entering directory '/tmp/cabal-tmp-9133/QuickCheck-2.12.4'
Configuring QuickCheck-2.12.4...
Preprocessing library for QuickCheck-2.12.4..
Building library for QuickCheck-2.12.4..
[ 1 of 16] Compiling Test.QuickCheck.Exception ( Test/QuickCheck/Exception.hs, dist/build/Test/QuickCheck/Exception.o )
[ 2 of 16] Compiling Test.QuickCheck.Random ( Test/QuickCheck/Random.hs, dist/build/Test/QuickCheck/Random.o )

Test/QuickCheck/Random.hs:10:1: error:
    Could not find module ‘System.Random’
    There are files missing in the ‘random-1.1’ package,
    try running 'ghc-pkg check'.
    Use -v to see a list of the files searched for.
   |
10 | import System.Random
   | ^^^^^^^^^^^^^^^^^^^^

Test/QuickCheck/Random.hs:11:1: error:
    Could not find module ‘System.Random.TF’
    There are files missing in the ‘tf-random-0.5’ package,
    try running 'ghc-pkg check'.
    Use -v to see a list of the files searched for.
   |
11 | import System.Random.TF
   | ^^^^^^^^^^^^^^^^^^^^^^^

Test/QuickCheck/Random.hs:12:1: error:
    Could not find module ‘System.Random.TF.Gen’
    There are files missing in the ‘tf-random-0.5’ package,
    try running 'ghc-pkg check'.
    Use -v to see a list of the files searched for.
   |
12 | import System.Random.TF.Gen(splitn)
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
cabal: Leaving directory '/tmp/cabal-tmp-9133/QuickCheck-2.12.4'
cabal: Error: some packages failed to install:
QuickCheck-2.12.4-3d2YDDqfPBn4BfmTJbpJXK failed during the building phase. The
exception was:
ExitFailure 1

However, I already have the arch packages haskell-random, haskell-tf-random and haskell-mwc-random installed. Does anybody know how to fix this?

Edit: I also ran cabal install random --reinstall.


Solution

  • Even though I have a main = do and couldn't get it working that way, I was able to run my QuickCheck test as follows:

    To run a quickCheck, first load your program with:

     $ ghci MyProg.hs
    

    Then to run the quickCheck, find the test you want to run, then run it with:

     $ quickCheck my_quick_check