File tree Expand file tree Collapse file tree 1 file changed +33
-5
lines changed Expand file tree Collapse file tree 1 file changed +33
-5
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,41 @@ pip install route using virtual environments.
29
29
30
30
To begin, we first define our virtual environment.
31
31
32
+ .. tab-set ::
32
33
33
- .. code-block :: bash
34
+ .. tab-item :: conda
35
+
36
+ .. code-block :: bash
37
+
38
+ # create a virtual environment named env_isaaclab with python3.11
39
+ conda create -n env_isaaclab python=3.11
40
+ # activate the virtual environment
41
+ conda activate env_isaaclab
42
+
43
+ .. tab-item :: uv
44
+
45
+ .. tab-set ::
46
+ :sync-group: os
47
+
48
+ .. tab-item :: :icon:`fa-brands fa-linux` Linux
49
+ :sync: linux
50
+
51
+ .. code-block :: bash
52
+
53
+ # create a virtual environment named env_isaaclab with python3.11
54
+ uv venv --python 3.11 env_isaaclab
55
+ # activate the virtual environment
56
+ source env_isaaclab/bin/activate
57
+
58
+ .. tab-item :: :icon:`fa-brands fa-windows` Windows
59
+ :sync: windows
60
+
61
+ .. code-block :: batch
34
62
35
- # create a virtual environment named env_isaaclab with python3.11
36
- conda create -n env_isaaclab python= 3.11
37
- # activate the virtual environment
38
- conda activate env_isaaclab
63
+ # create a virtual environment named env_isaaclab with python3.11
64
+ uv venv -- python 3.11 env_isaaclab
65
+ # activate the virtual environment
66
+ env_isaaclab\Scripts\activate
39
67
40
68
41
69
Next, install a CUDA-enabled PyTorch 2.7.0 build.
You can’t perform that action at this time.
0 commit comments