Step-by-step
💻 DeepSeek LLM
DeepSeek
📘 Step-by-step guide 📘 DeepSeek · DeepSeek LLMbeginner 🏠 Everyday life

How to run your first open‑source LLM from DeepSeek on a home PC

Learn how to download and chat with a powerful, completely private AI model on your own Windows or Mac laptop, keeping your conversations offline.

Have you ever wanted to chat with a powerful AI without sending your private conversations off to a tech company's distant servers? This step-by-step guide will show you how to download and run DeepSeek's open-source AI entirely on your own laptop, keeping your data completely secure and offline.

✅ Before you start
  • A modern computer: A Windows PC or Mac laptop, ideally made in the last few years, with at least 8GB of memory (often called RAM).
  • A stable internet connection: You'll need to download several gigabytes of files, so a reliable connection will make the process smoother.
  • Hard drive space: Around 5GB of free storage space on your computer to hold the AI model and the helper application.
  • Time commitment: Roughly 15-20 minutes, with most of that time spent waiting for downloads.
  • No paid plans needed: Both the helper application (Ollama) and the DeepSeek AI model are completely free to download and use.
1

Download and install Ollama

To run an AI model on your computer, you first need a special helper application that translates between your computer's hardware and the AI's digital brain. We'll use a free, trusted tool called Ollama. Think of Ollama like a video player, while the DeepSeek AI is the movie file you want to play.

Visit the official Ollama website in your web browser. You'll see a prominent "Download" button or options for different operating systems like "Download for Mac" or "Download for Windows." Click the appropriate button for your computer. Once the download is complete, find the downloaded file (usually in your "Downloads" folder) and double-click it to start the installation. Follow the on-screen prompts, accepting the default options, much like installing any other software. If the website layout looks different, simply look for a section titled "Download" or "Get Ollama" and select your computer's operating system.

You'll know it worked when: The Ollama application is installed on your computer, and you might see an Ollama icon in your system tray (bottom-right on Windows) or menu bar (top-right on Mac).

2

Open your computer's command centre

To tell Ollama to fetch and start the DeepSeek model, we need to use a simple text command. This is done through a special window where you type instructions directly to your computer, often called the "command centre" or "terminal."

  • On Windows: Click your Start menu (the Windows icon, usually bottom-left), type "cmd" into the search bar, and then click to open the "Command Prompt" app.
  • On a Mac: Press the Command key and the Spacebar on your keyboard at the same time (this opens Spotlight Search), type "Terminal," and then press Enter.

A new window will open on your screen. This window usually has a black or dark background with white text and a blinking cursor. It might look a bit old-fashioned or "retro," but it's very powerful for specific tasks. If you see "PowerShell" open on Windows instead of Command Prompt, that's perfectly fine too, as it works similarly.

You'll know it worked when: You see a dark window on your screen with a line of text ending in a blinking cursor, typically showing something like C:\Users\YourName> on Windows or YourName@YourComputerName ~ % on Mac.

3

Download and run DeepSeek

Now we will fetch a lightweight version of DeepSeek's model. This is an LLM (Large Language Model), which is the digital engine or "brain" that powers a chatbot like ChatGPT. We'll use a smaller version of DeepSeek-R1 that is specifically designed to run smoothly on everyday home computers.

In your Command Prompt or Terminal window, type the following command exactly as shown. Pay close attention to spacing and punctuation, then press Enter. Your typed command will appear on the screen.

💬 Example`ollama run deepseek-r1:1.5b`

After you press Enter, your computer will automatically start downloading the DeepSeek model files. You'll see text indicating the download progress, often showing a percentage or a download speed. Depending on your internet connection, this could take a few minutes. If it seems to get stuck or you see an error, double-check your spelling of the command and ensure your internet is connected.

You'll know it worked when: The download completes, and the command line prompt changes to a chat interface, often showing a line like >>> or Send a message (/? for help), indicating the AI is ready for your input.

4

Start your private conversation

You are now connected to an offline AI running entirely on your local machine! This means your conversations stay on your computer and are not sent to any external company's servers.

At the >>> prompt, type your question or a command (this is called a "prompt") and press Enter. For example, you could ask it for ideas, summaries, or explanations. After you send your message, the AI will begin to "think" and then generate its response word by word, just like you might see in online chatbots.

💬 Example`What are three fun activities to do on a rainy weekend afternoon?`

If the AI's response seems to miss the point, try rephrasing your question with more detail. This AI is running entirely on your computer, so its speed will depend on your hardware.

You'll know it worked when: The AI finishes typing its full response, and a new prompt (like >>>) appears below, ready for your next input.

5

Finish your chat session

When you're finished chatting with DeepSeek and want to close the conversation, you can simply tell the AI you're done. This will return you to your computer's regular command line, where you started.

At the >>> prompt, type the special command /bye and then press Enter. The chat session will then end, and the AI will stop responding.

💬 Example`/bye`

After typing /bye and pressing Enter, the chat interface (the >>> prompt) will disappear. You will then see your standard command line prompt again (e.g., C:\Users\YourName> or YourName@YourComputerName ~ %), indicating that you have exited the DeepSeek chat and are back to your computer's general command centre. If /bye doesn't seem to work, you can usually force quit by holding down the Control key (or Ctrl on Windows, Command on Mac) and pressing the C key a couple of times.

You'll know it worked when: The >>> chat prompt disappears, and you see your regular computer command line prompt again, ready for you to close the window or type other computer commands.

⚠️ Common mistakes
  • Typing errors in commands: A single typo can stop the command from working.
    • The fix: Always double-check your spelling, spacing, and use of hyphens in commands like ollama run deepseek-r1:1.5b before pressing Enter. The command line is very precise!
  • Very slow AI responses: If the AI takes a very long time to generate a reply, your computer may be running low on active memory (RAM).
    • The fix: Try closing web browsers, games, or video editing software to free up your computer's RAM. Also, stick to smaller models like the 1.5b or 8b versions for better performance on typical laptops. The "b" stands for "billions of parameters," which are like the neural connections in the AI's brain; fewer parameters mean the AI needs less processing power.
  • Downloading a model that's too large: Trying to download the huge "70b" versions of models will likely not work well on a home PC and can take up significant disk space.
    • The fix: For your home computer, avoid models with "70b" in their name. Stick to smaller, more efficient versions like deepseek-r1:1.5b or, if your computer is powerful, perhaps a deepseek-r1:8b version.
🚀 Try it now

Once you've installed Ollama and run DeepSeek-R1, try asking it a simple, creative question. For instance, ask: "Give me three healthy snack ideas for busy weekdays."

✦ Original step-by-step guide by AI World Co.'s AI editorial team. Written in plain language, reviewed for accuracy.

← Back to all stories