Before We Begin
Most people skip the workspace setup because it feels like "getting ready to do the real thing." It's not. The workspace IS the real thing. Where you work shapes how you think.
Professional developers use VS Code not because it's impressive — because it gives you everything in one window: your files, your terminal, your code. We're setting this up once, correctly, and using it for everything going forward.
You will not break your computer. You will not make a mistake that can't be undone. Every step in this module is reversible.
Why VS Code
VS Code is a text editor with professional tools built in: file explorer, integrated terminal, extensions for every language. Free, open source, used by millions of developers. It's not just a place to type — it's an environment where your thinking becomes visible and organized.
VS Code is a text editor with professional tools built in: file explorer, integrated terminal, extensions for every language. Free, open source, used by millions of developers.
File Explorer (left sidebar), Editor (center), Terminal (bottom panel). That's the whole interface. Everything else is optional.
The terminal inside VS Code runs in your current project folder automatically. This is important. You never have to navigate to the right folder manually.
Every AI project you build in this course lives in a folder. VS Code shows you that folder, the files inside it, and gives you a terminal to run commands in it — all in one window.
Install and Configure
You're going to download VS Code, install it with the right settings, and open your first workspace folder.
Go to code.visualstudio.com and download VS Code for your operating system (Windows, Mac, or Linux).
Run the installer. On Windows: check all 4 boxes on the "Select Additional Tasks" screen — especially "Add to PATH." On Mac: drag VS Code to Applications. These steps ensure VS Code is easy to launch and use from anywhere.
Open VS Code. It will show a Welcome tab. Close it by clicking the X on the tab.
Open File → Open Folder. Navigate to your Desktop. Create a new folder called "aiiqm-workspace" and click Open. You should see "aiiqm-workspace" appear in the left sidebar.
Open the integrated terminal: View → Terminal. Or press Ctrl+` (backtick, the key above Tab). You should see a terminal panel appear at the bottom of VS Code.
In the terminal, type: echo "AIIQM Workspace Active" and press Enter. You should see: AIIQM Workspace Active printed back.
Control the Outcome
What you've just created is persistent. Close VS Code and reopen it — your workspace folder is still there, ready to work. This is control: a permanent, organized place for every project that follows.
You can verify that your workspace is set up and working correctly by confirming these steps:
- VS Code is open with "aiiqm-workspace" shown in the left sidebar.
- The integrated terminal is visible at the bottom of the screen.
- You ran echo "AIIQM Workspace Active" and saw the output.
- If you close VS Code and reopen it, your workspace folder is still there.
Common Mistakes
Before You Move On
- VS Code is installed and opens without errors.
- You created the aiiqm-workspace folder.
- The integrated terminal is visible and functional.
- You ran echo and saw your output.
What You Proved Today
You set up a professional development environment. This isn't just installing software — you've created the space where thinking becomes real.
- Analyze: You understood why VS Code is the right tool — not just a text editor, but an integrated workspace.
- Integrate: You installed VS Code, created your workspace folder, and ran your first terminal command.
- Manage: You now have a permanent workspace that every future module will build inside.