Home > OS >  C via Visual Studio Video - "Include file not found in browse.path." C/C [1, 1]
C via Visual Studio Video - "Include file not found in browse.path." C/C [1, 1]

Time:09-26

I have read numerous examples and videos to learn how to fix this to no avail. I am new to using Visual Studio Code and I seem to not be able to resolve this issue independently. I've reset my settings, deleted and reinstalled, etc. One common occurrence I am seeing is to access "MingGW", which I apparently do not have installed on my computer and/or have access to. I am in need of great assistance!

Thanks in advance for all of your help.

CodePudding user response:

Apparently, the error is related to the fact that you don't have a compiler installed on your machine (or VS Code can't find its directory).

You can download the compiler from its official website here: Mingw-w64

CodePudding user response:

The answer is in your question ""MingGW", which I apparently do not have installed on my computer and/or have access to"

Install MingGw, and then compile.

Here is a Link to help you get started on setting up the MinGW for Visual Studio

  • Related