Why Does Everyone Keep Telling Me to Open a Terminal?

Share
Why Does Everyone Keep Telling Me to Open a Terminal?

You are following instructions online — trying to run a script that ChatGPT or Claude wrote for you, or installing something, or just trying to get a thing to work — and at some point the guide says "open your terminal." Or "open Command Prompt." Or "open PowerShell." You have no idea what any of those are. You feel like you have been handed directions that assume you already know where you are going.

Here is the thing nobody says upfront: you are not going to break anything. The terminal looks intimidating. It is not dangerous. And for running AI-written scripts, you only need to know about four commands. That is genuinely it.

What a Terminal Actually Is

Your computer has two ways you can talk to it.

The first is the one you already know. Windows, folders, icons, buttons. You click on things and things happen. This was designed specifically so people would not have to learn anything technical to use a computer.

The second way is the terminal. Instead of clicking, you type instructions directly. No icons. No menus. Just a text box and a cursor waiting for you to tell it what to do.

That is all it is. A direct line to your computer, without the visual layer in between. Less like using a smartphone and more like sending your computer a very precise text message.

Why Every Tutorial Points You There

Many tools simply do not have a visual interface. Python is one of them. There is no button you click to run a Python script. You run it by typing a command in the terminal.

This is not an oversight. It is how most programming tools work, because the people who built them live in terminals all day and find them faster than any visual alternative. The side effect is that every tutorial written by a developer assumes you are comfortable there too.

You are probably not. That is fine. You do not need to be comfortable — you just need to know the four or five commands that actually apply to your situation.

The Only Commands You Actually Need

When you open a terminal you will see something like this:

your-name@MacBook ~ %

Or on Windows:

C:\Users\YourName>

This is just the terminal telling you where you currently are in your computer's folder structure. It is waiting for you to type something.

Here are the commands you will actually use:

cd foldername — moves you into a folder. Type cd Desktop to go to your Desktop, for example.

python filename.py — runs a Python script. Replace filename.py with the name of your actual file.

pip install packagename — installs a Python library your script needs. The AI will tell you exactly what to type here if something is missing.

python --version — checks whether Python is installed and which version you have.

That is the list. You do not need to memorise anything else to get started.

A Shortcut That Makes Navigation Effortless

Figuring out how to navigate to the right folder using cd commands is the part that trips most people up. There is a shortcut that makes it completely painless.

On Mac: type cd and a space in the terminal, then drag your folder from Finder directly into the terminal window. It pastes the full path for you automatically. Press enter and you are there.

On Windows: hold Shift, right-click on your folder in File Explorer, and select "Open in Terminal" or "Open PowerShell window here." It opens the terminal already pointing at that folder.

Neither of these requires you to know anything about file paths. Use them every time.

The One Thing to Remember

The terminal is not a developer-only secret. It is just a more direct way to give your computer instructions. For everything you will do with an AI-written script — running it, installing what it needs, checking it works — you need four commands and one drag-and-drop trick. That is the entire learning curve.


Struggling to get your script running? → Snapdock

New here? This might help: I have a Python script. How do I actually run it for the first time? →