Skip to content

Commit 152d3a7

Browse files
committed
Update docs
1 parent ef14737 commit 152d3a7

3 files changed

Lines changed: 6 additions & 41 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ Uni-Lab-OS recommends using `mamba` for environment management. Choose the appro
3939

4040
```bash
4141
# Create new environment
42-
mamba create -n unilab uni-lab::unilabos -c robostack-staging -c conda-forge
42+
mamba create -n unilab python=3.11.11
43+
mamba activate unilab
44+
mamba install -n unilab uni-lab::unilabos -c robostack-staging -c conda-forge
4345
```
4446

4547
## Install Dev Uni-Lab-OS

README_zh.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ Uni-Lab-OS 建议使用 `mamba` 管理环境。根据您的操作系统选择适
4141

4242
```bash
4343
# 创建新环境
44-
mamba create -n unilab uni-lab::unilabos -c robostack-staging -c conda-forge
44+
mamba create -n unilab python=3.11.11
45+
mamba activate unilab
46+
mamba install -n unilab uni-lab::unilabos -c robostack-staging -c conda-forge
4547
```
4648

4749
2. 安装开发版 Uni-Lab-OS:

docs/user_guide/installation.md

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -317,45 +317,6 @@ unilab --help
317317

318318
如果所有命令都正常输出,说明开发环境配置成功!
319319

320-
### 开发工具推荐
321-
322-
#### IDE
323-
324-
- **PyCharm Professional**: 强大的 Python IDE,支持远程调试
325-
- **VS Code**: 轻量级,配合 Python 扩展使用
326-
- **Vim/Emacs**: 适合终端开发
327-
328-
#### 推荐的 VS Code 扩展
329-
330-
- Python
331-
- Pylance
332-
- ROS
333-
- URDF
334-
- YAML
335-
336-
#### 调试工具
337-
338-
```bash
339-
# 安装调试工具
340-
pip install ipdb pytest pytest-cov -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
341-
342-
# 代码质量检查
343-
pip install black flake8 mypy -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
344-
```
345-
346-
### 设置 pre-commit 钩子(可选)
347-
348-
```bash
349-
# 安装 pre-commit
350-
pip install pre-commit -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
351-
352-
# 设置钩子
353-
pre-commit install
354-
355-
# 手动运行检查
356-
pre-commit run --all-files
357-
```
358-
359320
---
360321

361322
## 验证安装

0 commit comments

Comments
 (0)