|
|
|
|
---
|
|
|
|
|
comments: true
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# 0.3. 编程环境安装
|
|
|
|
|
|
|
|
|
|
(TODO 视频教程)
|
|
|
|
|
|
|
|
|
|
## 0.3.1. 安装 VSCode
|
|
|
|
|
|
|
|
|
|
本书推荐使用开源轻量的 VSCode 作为本地 IDE ,下载并安装 [VSCode](https://code.visualstudio.com/) 。
|
|
|
|
|
|
|
|
|
|
## 0.3.2. Java 环境
|
|
|
|
|
|
|
|
|
|
1. 下载并安装 [OpenJDK](https://jdk.java.net/18/)(版本需满足 > JDK 9)。
|
|
|
|
|
2. 在 VSCode 的插件市场中搜索 `java` ,安装 Java Extension Pack 。
|
|
|
|
|
|
|
|
|
|
## 0.3.3. C/C++ 环境
|
|
|
|
|
|
|
|
|
|
1. Windows 系统需要安装 [MinGW](https://sourceforge.net/projects/mingw-w64/files/) ([配置教程](https://glj0.netlify.app/d-%E8%BD%AF%E4%BB%B6%E6%8A%80%E8%83%BD/windows%20%E4%B8%8B%E4%BD%BF%E7%94%A8%20vscode%20+%20mingw%20%E5%AE%8C%E6%88%90%E7%AE%80%E5%8D%95%20c%20%E6%88%96%20cpp%20%E4%BB%A3%E7%A0%81%E7%9A%84%E8%BF%90%E8%A1%8C%E4%B8%8E%E8%B0%83%E8%AF%95/)),MacOS 自带 Clang 无需安装。
|
|
|
|
|
2. 在 VSCode 的插件市场中搜索 `c++` ,安装 C/C++ Extension Pack 。
|
|
|
|
|
|
|
|
|
|
## 0.3.4. Python 环境
|
|
|
|
|
|
|
|
|
|
1. 下载并安装 [Miniconda3](https://docs.conda.io/en/latest/miniconda.html) 。
|
|
|
|
|
2. 在 VSCode 的插件市场中搜索 `python` ,安装 Python Extension Pack 。
|
|
|
|
|
|
|
|
|
|
## 0.3.5. Go 环境
|
|
|
|
|
|
|
|
|
|
1. 下载并安装 [go](https://go.dev/dl/) 。
|
|
|
|
|
2. 在 VSCode 的插件市场中搜索 `go` ,安装 Go 。
|
|
|
|
|
3. 快捷键 `Ctrl + Shift + P` 呼出命令栏,输入 go ,选择 `Go: Install/Update Tools` ,全部勾选并安装即可。
|
|
|
|
|
|
|
|
|
|
## 0.3.6. JavaScript 环境
|
|
|
|
|
|
|
|
|
|
1. 下载并安装 [node.js](https://nodejs.org/en/) 。
|
|
|
|
|
2. 在 VSCode 的插件市场中搜索 `javascript` ,安装 JavaScript (ES6) code snippets 。
|
|
|
|
|
|
|
|
|
|
## 0.3.7. C# 环境
|
|
|
|
|
|
|
|
|
|
1. 下载并安装 [.Net 6.0](https://dotnet.microsoft.com/en-us/download) ;
|
|
|
|
|
2. 在 VSCode 的插件市场中搜索 `c#` ,安装 c# 。
|
|
|
|
|
|
|
|
|
|
## 0.3.8. Swift 环境
|
|
|
|
|
|
|
|
|
|
1. 下载并安装 [Swift](https://www.swift.org/download/);
|
|
|
|
|
2. 在 VSCode 的插件市场中搜索 `swift`,安装 [Swift for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=sswg.swift-lang)。
|
|
|
|
|
|
|
|
|
|
## 0.3.9. Rust 环境
|
|
|
|
|
|
|
|
|
|
1. 下载并安装 [Rust](https://www.rust-lang.org/tools/install);
|
|
|
|
|
2. 在 VSCode 的插件市场中搜索 `rust`,安装 [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)。
|