5
I installed Coq in my system from the default installer. Then I added proof general to my existing emacs. But the problem is when I try to run a command in emacs I find the following from emacs,
Searching for program no such file or directory coqtop
I believe there are some configuration errors.
Looking forward to your thoughts.
What you describe sounds like a basic situation where the first things to check would be whether the library is in your load path, and whether that library has a provide statement at the bottom, and whether there is a require statement in your user configuration file. Typically, the proper procedure is to assign a directory to the load path and place the library there. In the user configuration, file put a statement
(require '....)
. So long as the library is in your load path, and so long as it has a statement like(provide '...)
, then that is usually sufficient to resolve load issues. – lawlist – 2014-06-23T05:44:35.033