I've been using ghc 8.0.2 and I recently installed ghc 8.2.2. I tried compiling my project and got the following error message:
Could not find module ‘Data.Vector’
Perhaps you meant Data.Functor (from base-4.10.1.0)
Use -v to see a list of the files searched for.
|
17 | import qualified Data.Vector as V
I checked the docs for Data.Vector and it doesn't say anything about the whole library becoming unavailable. Why did this happen and how can I fix it?