【2024 DigiKey创意大赛】- 基于毫米波雷达的生命体征检测及健康监护系统-环境安装 2
# **【2024 DigiKey创意大赛】- 基于毫米波雷达的生命体征检测及健康监护系统 -环境搭建 - ESP-IDF环境安装**### 方法一:通过Homebrew安装
1. **安装Homebrew**(如果尚未安装):
sh
```text
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
2. **使用Homebrew安装PlatformIO**:
sh
```text
brew install platformio
```
3. **验证安装**:
sh
```text
pio --version
```
详细文档请参考PlatformIO Homebrew安装文档 。
### 方法二:通过安装脚本安装
1. **使用curl下载并运行安装脚本**:
sh
```text
curl -fsSL -o get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py
python3 get-platformio.py
```
2. **或者使用wget下载并运行安装脚本**:
sh
```text
wget -O get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py
python3 get-platformio.py
```
3. **验证安装**:
sh
```text
pio --version
```
详细文档请参考PlatformIO安装脚本文档 。
### 方法三:通过PlatformIO IDE for VSCode安装
1. **下载并安装Visual Studio Code**: 下载VSCode
2. **在VSCode中安装PlatformIO IDE扩展**:
- 打开VSCode的扩展管理器(左侧栏的方块图标)
- 搜索`platformio ide`
- 点击`Install`进行安装
3. **使用PlatformIO IDE**:
- 打开VSCode,点击左侧栏的蚂蚁图标进入PlatformIO Home
- 创建或导入PlatformIO项目
详细文档请参考PlatformIO IDE for VSCode文档 。
通过以上任意一种方法,你都可以在macOS平台上成功安装并使用PlatformIO。如果有任何问题,可以参考对应的官方文档获取更多帮助。
!(/Users/Galaxy/Library/Application Support/typora-user-images/image-20241020204246299.png)
!(/Users/Galaxy/Library/Application Support/typora-user-images/image-20241020210852046.png)
页:
[1]