🎓 AIIQM-WELL University · Foundation · Module F2 of 5

Setting Up Your Workspace
— VS Code Without the Fear

45–60 min
📋 Prerequisites: Module F1 complete
📊 Foundation Level
Lesson Outcome: VS Code is installed, your first folder is created, and you've run a command in the integrated terminal.
AIMY Opening

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.

Analyze Phase

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.

01
What VS Code Is

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.

02
The Three Panels You Will Use

File Explorer (left sidebar), Editor (center), Terminal (bottom panel). That's the whole interface. Everything else is optional.

03
The Integrated Terminal

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.

04
Why This Matters for AI Work

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.

Integrate Phase

Install and Configure

You're going to download VS Code, install it with the right settings, and open your first workspace folder.

01
Download VS Code

Go to code.visualstudio.com and download VS Code for your operating system (Windows, Mac, or Linux).

02
Run the Installer

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.

03
Open VS Code

Open VS Code. It will show a Welcome tab. Close it by clicking the X on the tab.

04
Create Your Workspace Folder

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.

05
Open the Terminal

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.

06
Test It

In the terminal, type: echo "AIIQM Workspace Active" and press Enter. You should see: AIIQM Workspace Active printed back.

Manage Phase

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.

PTR — Prove The Result

You can verify that your workspace is set up and working correctly by confirming these steps:

  1. VS Code is open with "aiiqm-workspace" shown in the left sidebar.
  2. The integrated terminal is visible at the bottom of the screen.
  3. You ran echo "AIIQM Workspace Active" and saw the output.
  4. If you close VS Code and reopen it, your workspace folder is still there.

Common Mistakes

⚠ "I can't find the terminal"
View menu → Terminal. Or press Ctrl+` (backtick, the key above Tab). The terminal should appear at the bottom of VS Code.
⚠ Forgot to check "Add to PATH" on Windows
Re-run the VS Code installer. The option is on the "Select Additional Tasks" screen. Check all 4 boxes, especially "Add to PATH."
⚠ The sidebar is empty or hidden
Press Ctrl+B to toggle the sidebar visibility. Or click View → Explorer to show the file tree.
Module Checkpoint

Before You Move On

✓ Verify These Four Things
  1. VS Code is installed and opens without errors.
  2. You created the aiiqm-workspace folder.
  3. The integrated terminal is visible and functional.
  4. You ran echo and saw your output.
AIM Commitment

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.

  1. Analyze: You understood why VS Code is the right tool — not just a text editor, but an integrated workspace.
  2. Integrate: You installed VS Code, created your workspace folder, and ran your first terminal command.
  3. Manage: You now have a permanent workspace that every future module will build inside.