HaskellQuickCheck-2.11.3 包中缺少文件

Haskell there are files missing in the QuickCheck-2.11.3 package

我尝试了 运行 我的程序,该程序通过 ghc MyProgramm.hs 使用 Haskell QuickCheck,但收到以下错误:

$ 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 (
   | ^^^^^^^^^^^^^^^^^^^^^^^^...

我安装了 stack、运行、stack updatestack install QuickCheck 没有问题,但错误仍然存​​在。然后,我 运行 cabal install QuickCheck 得到以下错误:

$ 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

但是,我已经安装了 arch 软件包 haskell-randomhaskell-tf-randomhaskell-mwc-random。有人知道如何解决这个问题吗?

编辑:我也 运行 cabal install random --reinstall.

尽管我有一个 main = do 并且无法以这种方式工作,但我能够 运行 我的 QuickCheck 测试如下:

为了 运行 快速检查,首先加载您的程序:

 $ ghci MyProg.hs

然后到运行 quickCheck,找到你要的测试运行,然后运行它用:

 $ quickCheck my_quick_check