I'm trying to use boost libraries when working with Visual Studio Code.
VS code editor can't find boost headers, and the code won't compile.
I've installed boost with sudo apt install libboost-dev.
The boost libraries are located in /usr/include, and I've added it to my active configuration.
When I go to terminal, I can see the libraries in that directory, however, when I open Visual Studio Code's terminal, and go to /usr/include, boost libraries are not there. And, also, that terminal can't find apt command.
Observation from VS Code's terminal:

To me it looks like VS Code is running in some sort of sandbox.
When I start vscode, it runs with command
/app/extra/vscode/code --extensions-dir=/home/user/.var/app/com.visualstudio.code/data/vscode/extensions --reuse-window --no-sandbox
How do I disable the sandbox mode or install the libraries I need inside that sandbox?
