File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
47492 . 安装开发版 Uni-Lab-OS:
Original file line number Diff line number Diff 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## 验证安装
You can’t perform that action at this time.
0 commit comments