I'm following the TDD book in Idris 2, and the online documentation gives the following advice:
For the
VListview in the exercise 4 after Chapter 10-2 importData.List.Views.Extrafromcontriblibrary.
So I put this import in a source file (example.idr)
import Data.List.Views.Extra
But running idris2 example.idr fails with
Error: Module Data.List.Views.Extra not found
I believe the contrib library is correctly installed, because contrib (0.5.1) appears in the list printed by idris2 --list-packages.
How can Idris 2 be made to accept imports from the contrib library?