DeepSeek Installation Guide for Beginners: Getting Started with DeepSeek V3 and DeepSeek R1
By Mukesh Kumar
Updated on Feb 05, 2025 | 10 min read | 1.1k views
Share:
For working professionals
For fresh graduates
More
By Mukesh Kumar
Updated on Feb 05, 2025 | 10 min read | 1.1k views
Share:
Table of Contents
DeepSeek is a Chinese AI model founded in 2023 by Hedge Fund manager Liang Wenfeng. It soared beyond ChatGPT on the US App Store and triggered a historic drop of 17% (almost $600 billion) in Nvidia’s stock on January 27, 2025, all while costing around $5.576 million to develop.
Among DeepSeek’s offerings, models V3 and R1 stand out, each running on 671 billion total parameters with 37 billion activated per token. DeepSeek R1 uses large-scale reinforcement learning for next-level reasoning, while DeepSeek V3 handles multilingual tasks and text generation.
This guide will walk you through everything you need to DeepSeek installation for models V3 and R1: from basic commands to hardware tips, so you can set up and install DeepSeek even if it’s your first time trying it.
Want to check out how DeepSeek and ChatGPT compare? Check out upGrad’s blog, DeepSeek vs ChatGPT: What's The Difference and Which is Better.
Although DeepSeek V3 is officially geared toward Linux with Python 3.10, it doesn’t come with a rigid, one-size-fits-all hardware checklist. Users have managed to run V3 on Windows or macOS through community frameworks, but you should still have a strong GPU, enough memory, and plenty of storage to deal with its 671B parameters.
When it comes to DeepSeek R1, there are clearer guidelines since R1’s local installation is more common for everyday usage. Here are the different R1 model variants:
Here’s a breakdown of the requirements for DeepSeek R1:
DeepSeek Installation Prerequisites |
Requirements |
Operating System |
|
CPU | Multi-core processor (4 cores or more), as large language models push CPUs heavily |
GPU |
|
Memory (RAM) |
|
Storage | Keep at least 4–50GB free, depending on which R1 size you download |
Software |
|
Also Read: Top 12+ Best Courses in Artificial Intelligence To Enhance Your Skills for Career Growth in 2025
Now, let’s begin the step-by-step tutorial on how to install and use V3 and R1, starting with DeepSeek V3.
If you’re eager to try and install DeepSeek V3 on your system, this section shows you exactly how to download, install, and run it. Follow these steps carefully to get the best results.
Step 1: Visit DeepSeek’s Official Website and Click on ‘Start Now’
Once you’ve clicked on ‘Start Now’, here are the next steps:
Step 2: Start Chatting
Once you’re logged in, you’ll land on a chat interface.
Step 3: Try the Search Mode
Step 4: Use File Uploads
Step 5: Explore Advanced Settings: DeepThink (R1)
Step 6: Switch to the Mobile DeepSeek App (Optional)
If you’d like to run and install DeepSeek R1 on your own computer without relying on online servers, the steps below will help you install and use the model in a private environment. By choosing a smaller checkpoint (like 1.5B) or a larger one (up to 671B), you can match the model size to the power of your hardware.
Step 1: Install Ollama
1. Go to the Ollama website: Choose the installer for your operating system.
2. Run the installer:
3. Launch Ollama:
Step 2: Open the Command Line for Ollama
Step 3: Download and Run a DeepSeek R1 Model
Please note: In the command above, replace 1.5b with 7b, 14b, 32b, 70b, or 671b if your hardware can handle a larger model. Ollama will download the required files and start DeepSeek R1 locally.
Step 4: Chat with DeepSeek R1
Step 5: Run DeepSeek R1 as a Background Service
Step 5: Use the Local API
curl http://localhost:11434/api/chat -d '{
"model": "deepseek-r1",
"messages": [{"role": "user", "content": "Hello! How are you?"}],
"stream": false
}'
Step 6: Explore Python Integration
pip install ollama
import ollama
response = ollama.chat(
model="deepseek-r1",
messages=[{"role": "user", "content": "Write a short poem on monsoon."}],
)
print(response["message"]["content"])
Step 7: Build a RAG App (Optional)
pip install langchain chromadb gradio
pip install -U langchain-community
Step 8: Shut Down When Done
By following these steps, you get a full DeepSeek R1 setup. You’ll have privacy (no cloud storage) and a quick way to integrate R1 into your code or projects. Feel free to start small (1.5B parameters) and move to a larger version later if you need more power.
Here are some quick pointers to get you comfortable with DeepSeek right from the start:
DeepSeek gives you the freedom to explore artificial intelligence on your own terms, whether you stick to online chats or run the model locally for full privacy. DeepSeek V3 caters to broader conversations and coding support, while DeepSeek R1 shines with step-by-step reasoning.
Both models can handle a lot but require a fair amount of resources. If you’re short on hardware, don’t hesitate to try smaller model sizes first. Once you feel confident, you can push towards heavier checkpoints, tinker with advanced features like DeepThink or RAG, and even build your own AI systems and apps.
As you explore these possibilities, you might also be interested in taking your AI skills further. That’s where upGrad can come in — our AI and ML online courses dive into real-world applications and help you build on what you’ve learned here. For any further enquiries regarding your career path, book a call with upGrad’s experts for free.
Expand your expertise with the best resources available. Browse the programs below to find your ideal fit in Best Machine Learning and AI Courses Online.
Discover in-demand Machine Learning skills to expand your expertise. Explore the programs below to find the perfect fit for your goals.
Discover popular AI and ML blogs and free courses to deepen your expertise. Explore the programs below to find your perfect fit.
Reference Links:
https://timesofindia.indiatimes.com/technology/tech-tips/how-to-use-deepseek-on-laptop-system-requirements-steps-to-download-the-software-and-more/articleshow/117619851.cms
https://github.com/deepseek-ai/DeepSeek-R1/blob/main/DeepSeek_R1.pdf
https://github.com/deepseek-ai/DeepSeek-V3
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
Top Resources