Library Search
结果页树莓派 3B+ GPIO 编程 — Python + Node-RED + C
在 技术栈 中找到 8 个匹配结果。
技术栈
技术栈
8 个 Python # Python 安装指南
## 1. 环境准备
### 操作系统支持
- **Windows**:Windows 10/11(x86-64 / ARM64)
- **macOS**:macOS 11 Big Sur 及以上(Intel / Apple Silicon)
- **Linux**:主流发行版(Ubuntu 20.04+/Debian 11+/CentOS 8+/Fedora 36… 3% gRPC ## 环境准备
- **protoc**:Protocol Buffers 编译器
- **对应语言工具链**:Go / Java / Python / Node.js 等
## 安装命令
### protoc 编译器
```bash
# macOS
brew install protobuf
# Linux
sudo apt install -y protobuf-compiler
#… 3% XGBoost ## 环境准备
- **Python**:>= 3.8(推荐 3.10)
- **系统**:Linux / macOS / Windows 均支持
- **GPU(可选)**:NVIDIA CUDA 11.4+
## 安装命令
### CPU 版
```bash
pip install xgboost
```
### GPU 版
```bash
# CUDA 12
pip instal… 2% JAX ## 环境准备
- **Python**:>= 3.9(推荐 3.10 / 3.11)
- **硬件**:TPU 最佳,NVIDIA GPU(CUDA 12+)/ Apple Silicon(Metal)也支持
- **pip**:>= 23.0
## 安装命令
### CPU 版
```bash
pip install jax jaxlib
```
### NVIDIA GPU 版… 2% spaCy ## 环境准备
- **Python**:>= 3.8(推荐 3.10)
- **系统**:Linux / macOS / Windows(部分模型仅 Linux/macOS)
## 安装命令
### 最小安装
```bash
pip install spacy
```
### 安装语言模型
```bash
# 英文(小/中/大/Transformer)
python -m spacy… 2% OpenAI API ## 1. 环境准备
- **操作系统:** Windows 10+ / macOS 11+ / Linux
- **Python 版本:** Python 3.8 及以上(推荐 3.10+)
- **依赖项:** pip
- **API Key:** 在 [platform.openai.com/api-keys](https://platform.openai.com/api-keys) 创… 2% TensorFlow ## 1. 环境准备
- **操作系统:** Linux(Ubuntu 20.04+ 推荐)/ macOS 11+ / Windows 10+(WSL2 更佳)
- **Python 版本:** Python 3.9 - 3.11(TensorFlow 2.16+ 支持 3.12)
- **GPU(可选):** NVIDIA GPU + CUDA 11.8 / 12.3 + cuDNN 8.9+… 2% Firebase Firestore // 查询历史
async function getMessages(limit = 20) {
const snapshot = await db.collection('messages')
.orderBy('createdAt', 'desc')
.limit(limit)
.get();
const messages =… 2%