Skip to content

开发工具

本章节将推荐并指导你安装必备的开发软件,提升开发效率。

📋 工具清单

  • 终端工具
  • 代码编辑器
  • 容器化工具
  • 截图工具
  • 笔记工具
  • 其他工具

1. 终端工具

Warp (推荐)

  • 下载地址: https://www.warp.dev/
  • 特点: 现代化的终端,支持 AI 辅助、团队协作
  • 适用: macOS, Windows, Linux

Windows Terminal (Windows)

2. 代码编辑器

Visual Studio Code

Cursor

配置导入

Cursor 可以直接导入 VS Code 的配置和插件。

3. 容器化工具

Docker

Docker Desktop

  • 功能: 图形化 Docker 管理界面
  • 安装: 随 Docker 一起安装

4. 截图工具

Snipaste

替代方案

  • macOS: 系统自带截图工具
  • Windows: Snipping Tool 或 Snip & Sketch

5. 笔记工具

Obsidian

  • 下载地址: https://obsidian.md/
  • 特点: 本地优先的笔记工具,支持 Markdown
  • 适用: 全平台

Git 仓库配置

macOS/Linux

bash
# 克隆工作笔记仓库
git clone https://github.com/polaris-dxz/work-notes.git

Windows

powershell
# 克隆工作笔记仓库
git clone https://github.com/polaris-dxz/work-notes.git

6. 其他工具

Logi Options

坚果云

向日葵

微信

微信输入法

  • 功能: 智能输入法
  • 适用: macOS, Windows

Keka

Xmind

Ollama

macOS

bash
brew install ollama

Windows

powershell
winget install Ollama.Ollama

Linux

bash
curl -fsSL https://ollama.ai/install.sh | sh

7. 工作环境工具

Whistle

Pyenv

macOS/Linux

bash
curl https://pyenv.run | bash

Windows

powershell
# 使用 Chocolatey 安装
choco install pyenv-win

📦 批量安装脚本

macOS (使用 Homebrew)

bash
# 安装常用工具
brew install --cask warp
bash
brew install --cask visual-studio-code
bash
brew install --cask cursor
bash
brew install --cask docker
bash
brew install --cask snipaste
bash
brew install --cask obsidian
bash
brew install --cask logi-options-plus
bash
brew install --cask nutstore
bash
brew install --cask sunloginclient
bash
brew install --cask wechat
bash
brew install --cask keka
bash
brew install --cask xmind
bash
brew install ollama

Windows (使用 Chocolatey)

powershell
# 安装常用工具
choco install warp
powershell
choco install vscode
powershell
choco install cursor
powershell
choco install docker-desktop
powershell
choco install snipaste
powershell
choco install obsidian
powershell
choco install nutstore
powershell
choco install sunloginclient
powershell
choco install wechat
powershell
choco install xmind

Linux (使用包管理器)

bash
# Ubuntu/Debian
sudo apt update
sudo apt install snapd
bash
# 安装 VS Code
sudo snap install code --classic
bash
# 安装 Docker
sudo apt update
sudo apt install docker.io
sudo systemctl start docker
sudo systemctl enable docker
sudo usermod -aG docker $USER
bash
# 安装 Obsidian
sudo snap install obsidian --classic

✅ 验证安装

完成安装后,验证以下工具是否正常工作:

macOS/Linux

bash
# 检查 Docker
docker --version
bash
# 检查 VS Code
code --version
bash
# 检查 Cursor
cursor --version

Windows

powershell
# 检查 Docker
docker --version
powershell
# 检查 VS Code
code --version
powershell
# 检查 Cursor
cursor --version

🎉 下一步

开发工具安装完成后,继续配置 浏览器插件 吧!


遇到问题? 查看 问题排查 页面。 遇到问题? 查看 问题排查 页面。

Released under the MIT License.