I want to use HoTT library in my CoqIde. My environment is Coq_Platform_2021.09.0.8.13-installer-windows-x86_64-signed
and I have tried a lot of methods.
- I tried to write
Require Import HoTT.
in CoqIde and get the errorUnable to locate library HoTT. (While searching for a .vos file.)
- I tried to write
From HoTT Require Import Basics.
orRequire Import HoTT.Basics.
and I get the errorNotation "~ _" is already defined at level 75 with arguments constr at level 75
- However, I can load some libraries such as
UnivalenceAxiom
by writingFrom HoTT Require Import UnivalenceAxiom.
So my question is how to import HoTT library in my CoqIde?