You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/quick_start/install.md
+8-9Lines changed: 8 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,22 +4,21 @@
4
4
5
5
The following minimum system requirements are recommended to run EmbodiChain reliably. These are the tested configurations during development — other Linux distributions and versions may work but are not officially supported.
6
6
7
-
- Operating System: Linux (x86_64)
8
-
-Recommended distributions: Ubuntu 20.04 LTS or Ubuntu 22.04 LTS
7
+
- Operating System:
8
+
-Linux (x86_64): Ubuntu 20.04+
9
9
10
10
- NVIDIA GPU and drivers:
11
-
- Hardware: NVIDIA GPU with compute capability 7.0 or higher (e.g., RTX 20 series, RTX 30 series, A100, etc.)
12
-
- NVIDIA driver: 535 or higher (recommended 570)
13
-
- CUDA Toolkit: any of 11.8 — 12.8 (we test primarily with 11.8 and 12.x)
11
+
- Hardware: NVIDIA GPU with compute capability 7.0 or higher
12
+
- NVIDIA Driver: 535 or higher (recommended 570)
13
+
14
14
15
15
- Python:
16
-
- Supported Python versions:
17
-
- Python 3.10
18
-
- Use a virtual environment (venv, virtualenv, or conda) to isolate dependencies
16
+
- 3.10
17
+
- 3.11
19
18
20
19
Notes:
21
20
22
-
- Ensure your NVIDIA driver and CUDA toolkit versions are compatible with your chosen PyTorch wheel.
21
+
- Ensure your NVIDIA driver is compatible with your chosen PyTorch wheel.
23
22
- We recommend installing PyTorch from the official PyTorch instructions for your CUDA version: https://pytorch.org/get-started/locally/
There are two kinds of physics mode in :class:`SimulationManager`:
37
37
38
38
- `manual`: The physics updates only when the user calls the :meth:`SimulationManager.update` function. This mode is used for robot learning tasks where precise control over simulation steps is required. Enabled by setting :meth:`SimulationManager.set_manual_update` to True.
39
39
- `auto`: The physics updates in a standalone thread, which enable asynchronous rendering and physics stepping. This mode is suitable for visualizations and demos for digital twins applications. This is the default mode.
40
40
41
-
If `num_envs` is greater than 1, :meth:`SimulationManager.build_multiple_arenas` should be used to create multiple simulation arenas.
0 commit comments