在 Mac 上找不到模块“Test.QuickCheck”
Could not find module ‘Test.QuickCheck’ on Mac
当我尝试测试我的代码时,IntelliJ 给了我这个错误。不过我已经使用cabal install QuickCheck来安装了。
Testing.hs:3:1: error:
Could not find module ‘Test.QuickCheck’
Use -v to see a list of the files searched for.
|
3 | import Test.QuickCheck
| ^^^^^^^^^^^^^^^^^^^^^^
Failed, 0 modules loaded.
我认为这是 8.2.1 Haskell-平台二进制文件完整版本中的另一个严重错误实例。
解决方案要么强制重新安装损坏的东西,要么简单地升级到固定版本。此处提供了更多详细信息:https://mail.haskell.org/pipermail/haskell-cafe/2017-October/127979.html
当我尝试测试我的代码时,IntelliJ 给了我这个错误。不过我已经使用cabal install QuickCheck来安装了。
Testing.hs:3:1: error:
Could not find module ‘Test.QuickCheck’
Use -v to see a list of the files searched for.
|
3 | import Test.QuickCheck
| ^^^^^^^^^^^^^^^^^^^^^^
Failed, 0 modules loaded.
我认为这是 8.2.1 Haskell-平台二进制文件完整版本中的另一个严重错误实例。
解决方案要么强制重新安装损坏的东西,要么简单地升级到固定版本。此处提供了更多详细信息:https://mail.haskell.org/pipermail/haskell-cafe/2017-October/127979.html