I Had Never Opened a Terminal Before and Now I Run My Own AI Assistant - Complete MoltBot Guide for Absolute Beginners 2026
π
I Had Never Opened a Terminal Before Setting Up MoltBot
A Complete Guide for People Who Think They're "Not Technical Enough"
π± 20 min read • Zero Experience Required • February 2026
Let me be completely honest: six months ago, I didn't know what a "terminal" was. I thought "command line" was something only hackers used in movies. The word "server" scared me.
Now I have my own AI assistant running 24/7 on a computer in my closet, and I talk to it from my phone.
If I can do this, you can too. I promise.
This guide assumes you know absolutely nothing. I'm going to explain everything like I wish someone had explained it to me.
π "But I'm Not a Programmer..."
I hear you. Here's what I thought before I started:
Every single one of those thoughts was wrong.
The truth is:
- You don't need to write code - just copy and paste commands
- You can't really "break" anything permanently - worst case, you start over
- The commands are just instructions in English, not magic spells
- I learned this at 47 years old with zero tech background
π» First Things First: What is a Terminal?
A terminal is just a way to talk to your computer using text instead of clicking buttons.
You know how you click icons to open programs? The terminal does the same thing, but with typed commands. That's it. Nothing magical.
Example:
When you double-click the Chrome icon, your computer runs a command behind the scenes.
In a terminal, you could type google-chrome and it does the same thing.
That's literally all the terminal is - typing what you want instead of clicking it.
πͺ How to Open the Terminal
π On Mac:
- Press Command + Space (opens Spotlight search)
- Type Terminal
- Press Enter
A white or black window with text will appear. That's it!
πͺ On Windows:
- Press Windows key
- Type PowerShell
- Click on Windows PowerShell
A blue window will appear. That's your terminal!
π§ On Linux:
- Press Ctrl + Alt + T
Done. Linux makes it easy.
π The Only 5 Commands You Need to Know
Seriously, just these five. Everything else you'll copy and paste.
1. cd = "Change Directory" (go to a folder)
cd Documents
2. ls = "List" (show what's in a folder)
ls
3. pwd = "Print Working Directory" (where am I?)
pwd
4. sudo = "Super User Do" (run as administrator)
sudo apt install something
5. nano = Simple text editor
nano filename.txt
That's it. Five commands. You now know more than 90% of people.
π― The Secret: Copy and Paste
Here's what nobody tells beginners:
You don't need to memorize commands. Just copy and paste them.
Every guide (including this one) gives you the exact commands. You:
- Highlight the command with your mouse
- Copy it (Ctrl+C on Windows/Linux, Command+C on Mac)
- Click in the terminal
- Paste it (Ctrl+Shift+V on Linux, Command+V on Mac, Right-click on Windows)
- Press Enter
That's literally all you do. Copy, paste, enter. Repeat.
π Let's Actually Set Up MoltBot (Step by Step)
I'm going to walk you through this like you've never touched a computer. Ready?
Step 1: Open Your Terminal
Use the instructions above for your operating system. You should see a window with a blinking cursor.
What you'll see: Something like username@computer:~$ followed by a blinking line. This is where you type.
Step 2: Install Ollama
Copy this entire line and paste it into your terminal:
curl -fsSL https://ollama.com/install.sh | sh
Press Enter. Wait. You'll see text scrolling. This is normal.
What's happening: Your computer is downloading and installing Ollama automatically.
How long: 1-3 minutes depending on your internet.
Step 3: Download an AI Model
Now we need to download the actual AI brain. Copy and paste:
ollama pull llama3.2:3b
Press Enter. Wait again. A progress bar will appear.
What's happening: Downloading a 2GB AI model to your computer.
How long: 5-15 minutes depending on internet speed.
Step 4: Test That It Works
Let's make sure everything is working. Copy and paste:
ollama run llama3.2:3b "Hello, are you working?"
Press Enter. Wait a few seconds.
What you should see: The AI responds with something like "Hello! Yes, I'm working." If you see a response, congratulations! You just ran AI locally on your computer!
π
You Just Did It!
You installed software using the terminal. You downloaded an AI model. You ran it. You're not "not technical enough" anymore.
π± Now Let's Add MoltBot (To Use From Your Phone)
Right now you can only talk to the AI in the terminal. Let's connect it to Telegram so you can use it from anywhere.
Step 5: Create a Telegram Bot
- Open Telegram on your phone
- Search for @BotFather (this is Telegram's official bot maker)
- Send the message: /newbot
- BotFather asks for a name - type anything (example: "My AI Helper")
- BotFather asks for a username - must end in "bot" (example: "myaihelper_bot")
- BotFather gives you a long string of numbers and letters - this is your TOKEN
- SAVE THIS TOKEN! Copy it somewhere safe. You'll need it.
The token looks something like: 1234567890:ABCdefGHIjklMNOpqrSTUvwxYZ
Step 6: Install Git (If You Don't Have It)
Git is a tool that downloads code from the internet. Check if you have it:
git --version
If you see a version number, skip to Step 7.
If you see "command not found", install it:
# On Mac:
xcode-select --install
# On Ubuntu/Linux:
sudo apt install git
# On Windows:
Download from git-scm.com and run the installer
Step 7: Download MoltBot
git clone https://github.com/moltbot/moltbot.git
This creates a folder called "moltbot" on your computer with all the code inside.
Now go into that folder:
cd moltbot
Step 8: Install Node.js (If You Don't Have It)
Node.js is what runs MoltBot. Check if you have it:
node --version
If you see a version number (like v18.0.0), skip to Step 9.
If not, go to nodejs.org and download the "LTS" version. Install it like any normal program.
Step 9: Install MoltBot's Requirements
Make sure you're still in the moltbot folder, then run:
npm install
This downloads all the pieces MoltBot needs. Wait for it to finish (1-2 minutes).
Step 10: Configure MoltBot
Create your configuration file:
cp .env.example .env
Now open it in the text editor:
nano .env
You'll see a file with settings. Find these lines and change them:
TELEGRAM_TOKEN=paste_your_token_from_botfather_here
OLLAMA_HOST=http://localhost:11434
MODEL_NAME=llama3.2:3b
To save and exit nano:
- Press Ctrl + X
- Press Y (for yes, save changes)
- Press Enter
Step 11: Start MoltBot!
First, make sure Ollama is running (open a new terminal window):
ollama serve
Then in your original terminal (in the moltbot folder):
npm start
You should see "Bot started!" or similar message.
Step 12: Test It!
- Open Telegram on your phone
- Search for the bot name you created
- Send it a message: "Hello!"
- Wait a few seconds...
- It should respond!
πππ
You now have your own personal AI assistant running on your computer that you can talk to from anywhere in the world!
π§ Common Problems (Don't Panic)
Problem: "command not found"
Meaning: The program isn't installed or your terminal can't find it.
Fix: Close terminal, reopen it, try again. If still broken, reinstall the program.
Problem: "permission denied"
Meaning: You need administrator rights.
Fix: Add sudo at the beginning of the command and enter your password.
Problem: Bot doesn't respond in Telegram
Meaning: Something is not connected properly.
Fix: Check that both Ollama AND MoltBot are running. Check your token in .env is correct (no extra spaces).
Problem: Very slow responses
Meaning: Your computer is struggling with the AI model.
Fix: Use a smaller model. Run ollama pull tinyllama and change MODEL_NAME in .env to tinyllama.
πͺ You Did Something Most People Never Try
Seriously, take a moment to appreciate what you just did:
- You opened a terminal for possibly the first time
- You installed software using commands
- You downloaded and ran an AI model
- You created a Telegram bot
- You connected everything together
Most people think this is impossible for them. You just proved it isn't.
π Want Even More Hand-Holding?
I wrote a 231-page guide with screenshots of every single step, explanations of what each command does, and troubleshooting for every error I encountered. Written specifically for people who think they're "not technical enough."
Search on Amazon:
"MoltBot ClawdBot A.I Automation That Works"
Six months ago I didn't know what a terminal was.
Today I have AI running 24/7 on my own hardware.
If I can do it, you can too. I believe in you. π±
Written by someone who Googled "what is a terminal" before writing this guide.