zygalaxy 发表于 2024-10-31 20:28

【2024 DigiKey创意大赛】- 基于毫米波雷达的生命体征检测及健康监护系统-环境搭建 5

本帖最后由 zygalaxy 于 2024-10-30 09:56 编辑

## 【2024 DigiKey创意大赛】- 基于毫米波雷达的生命体征检测及健康监护系统 -环境搭建 - PlatformIO安装

### 方法一:通过Homebrew安装(Mac)

1. **安装Homebrew**(如果尚未安装):

   ```text
   /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
   ```
   
   

2. **使用Homebrew安装PlatformIO**:

   ```text
   brew install platformio
   ```

3. **验证安装**:

   ```text
   pio --version
   ```

详细文档请参考PlatformIO Homebrew安装文档 。

### 方法二:通过安装脚本安装

1. **使用curl下载并运行安装脚本**:

   ```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下载并运行安装脚本**:

   ```text
   wget -O get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py
   python3 get-platformio.py
   ```

3. **验证安装**:

   ```text
   pio --version
   ```

详细文档请参考PlatformIO安装脚本文档 。

### 方法三:通过PlatformIO IDE for VSCode安装

1. **下载并安装Visual Studio Code**:
   1. 访问 VSCode 官方网站:https://code.visualstudio.com/ 下载对应系统版本的安装包
   2. 运行下载的安装程序,并按照提示完成安装。
   3. 打开 VSCode。
2. **在VSCode中安装PlatformIO IDE扩展**:
   - 打开VSCode的扩展管理器(左侧栏的方块图标)
   - 搜索`platformio ide`
   - 点击`Install`进行安装
   
   
   
   
   
3. **使用PlatformIO IDE**:
   - 打开VSCode,点击左侧栏的蚂蚁图标进入PlatformIO Home
   - 创建或导入PlatformIO项目



通过以上任意一种方法,你都可以在macOS平台上成功安装并使用PlatformIO。如果有任何问题,可以参考对应的官方文档、留言与我交流。
页: [1]
查看完整版本: 【2024 DigiKey创意大赛】- 基于毫米波雷达的生命体征检测及健康监护系统-环境搭建 5