Haskell error with modules

0

I had Haskell platform installed on my computer and it worked fine until today. Today, when I wanted to load a file in prelude I got this error:

Could not find module `Test.QuickCheck'
Use -v to see a list of the files searched for.

I uninstalled Haskell platform and then I installed it again, but got the same error. Can someone help me?

theo

Posted 2019-01-03T19:22:00.023

Reputation: 1

It seems that Test.Quickcheck file does not exist where you think it does – Eric F – 2019-01-03T19:38:10.013

Answers

0

Seems like QuickCheck is not installed. Try to install it again through Cabal and don't forget to update your package list before you do:

cabal update    
cabal install QuickCheck

Lorenzo

Posted 2019-01-03T19:22:00.023

Reputation: 135