You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/docs/chapter_appendix/installation.md

2.7 KiB

编程环境安装

VSCode

本书推荐使用开源轻量的 VSCode 作为本地 IDE ,下载并安装 VSCode

Java 环境

  1. 下载并安装 OpenJDK(版本需满足 > JDK 9
  2. 在 VSCode 的插件市场中搜索 java ,安装 Extension Pack for Java 。

C/C++ 环境

  1. Windows 系统需要安装 MinGW配置教程MacOS 自带 Clang 无须安装。
  2. 在 VSCode 的插件市场中搜索 c++ ,安装 C/C++ Extension Pack 。
  3. (可选)打开 Settings 页面,搜索 Clang_format_fallback Style 代码格式化选项,设置为 { BasedOnStyle: Microsoft, BreakBeforeBraces: Attach }

Python 环境

  1. 下载并安装 Miniconda3 ,需要 Python 3.10 或更新版本。
  2. 在 VSCode 的插件市场中搜索 python ,安装 Python Extension Pack 。
  3. (可选)在命令行输入 pip install black ,安装代码格式化工具。

Go 环境

  1. 下载并安装 go
  2. 在 VSCode 的插件市场中搜索 go ,安装 Go 。
  3. 快捷键 Ctrl + Shift + P 呼出命令栏,输入 go ,选择 Go: Install/Update Tools ,全部勾选并安装即可。

JavaScript 环境

  1. 下载并安装 node.js
  2. 在 VSCode 的插件市场中搜索 javascript ,安装 JavaScript (ES6) code snippets 。
  3. (可选)在 VSCode 的插件市场中搜索 Prettier ,安装代码格式化工具。

C# 环境

  1. 下载并安装 .Net 6.0
  2. 在 VSCode 的插件市场中搜索 C# Dev Kit ,安装 C# Dev Kit 配置教程)。
  3. 也可使用 Visual Studio安装教程)。

Swift 环境

  1. 下载并安装 Swift
  2. 在 VSCode 的插件市场中搜索 swift ,安装 Swift for Visual Studio Code

Dart 环境

  1. 下载并安装 Dart
  2. 在 VSCode 的插件市场中搜索 dart ,安装 Dart

Rust 环境

  1. 下载并安装 Rust
  2. 在 VSCode 的插件市场中搜索 rust ,安装 rust-analyzer