I can\'t load modules that are in same folder in CoqIde.
I\'m trying to load sources from Software Foundations, I\'m running coqide in folder that contains SF source
You need to compile the .v files into .vo files and add their directory to your load path if you're going to require them. To compile them, run coqc in the command prompt. To add the files' directory to your load path in CoqIde, you can insert the line Add LoadPath " at the beginning of the .v files.