by holasoymalva
DeepSeek CLI, a command-line AI coding assistant that leverages the powerful DeepSeek Coder models
# Add to your Claude Code skills
git clone https://github.com/holasoymalva/deepseek-cliThis repository contains the DeepSeek CLI, a command-line AI coding assistant that leverages the powerful DeepSeek Coder models to accelerate your development workflows and enhance your coding experience.
With the DeepSeek CLI you can:
Prerequisites:
Install Ollama:
# macOS
brew install ollama
# Linux
curl -fsSL https://ollama.ai/install.sh | sh
# Windows: Download from https://ollama.ai
Install the CLI:
npm install -g run-deepseek-cli
Setup Local Environment:
# Start Ollama service
ollama serve
# Install DeepSeek Coder model (choose one)
ollama pull deepseek-coder:6.7b # Recommended (4GB)
ollama pull deepseek-coder:1.3b # Lightweight (1GB)
ollama pull deepseek-coder:33b # Most capable (19GB)
Start Using:
deepseek
Install the CLI:
npm install -g run-deepseek-cli
Configure API Access:
export DEEPSEEK_API_KEY="your_api_key_here"
export DEEPSEEK_USE_LOCAL=false
Get your API key from DeepSeek Platform.
Start Using:
deepseek
Once the CLI is running, you can start interacting with DeepSeek Coder from your shell.
cd new-project/
deepseek
> Create a FastAPI web application with user authentication and a PostgreSQL database
git clone https://github.com/your-repo/existin...