Skip to content

Commit fd94707

Browse files
APX103HanqingWangAI
authored andcommitted
!15 [doc] Add uv
* [feat] Add uv
1 parent a4bc983 commit fd94707

File tree

2 files changed

+27
-5
lines changed

2 files changed

+27
-5
lines changed

source/en/user_guide/internutopia/advanced_tutorials/how-to-add-metric.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Therefore, after customizing the task, you usually need to customize the metric
77
## 1. Defining a New Metric
88
Before adding a new metric, we need to clarify the following issues:
99

10-
- Metric Name: What will the metric be called?
11-
- Metric Objective: What specific Objective will the metric achieve?
12-
- Metric Update Method: Record the status of the metric while task is running
13-
- Metrics Calculation: Summarize all records at the end of the task
10+
- Name: What will the metric be called?
11+
- Objective: What specific Objective will the metric achieve?
12+
- Update Method: Record the status of the metric while task is running
13+
- Calculation: Summarize all records at the end of the task
1414

1515

1616
Here is how we define TraveledDistanceMetric based on the above issues:

source/en/user_guide/internutopia/get_started/installation.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ See more: [Differences Between Workstation And Docker](https://docs.omniverse.nv
2424
Windows support is in our roadmap. Contributions are welcome!
2525

2626

27-
### Install from source (Linux)
27+
### Install from source (Linux & conda)
2828

2929
Before proceeding with the installation, ensure that you have [Isaac Sim 4.5.0](https://docs.isaacsim.omniverse.nvidia.com/4.5.0/installation/install_workstation.html) and [Conda](https://conda.io/projects/conda/en/latest/user-guide/install/index.html) installed.
3030

@@ -44,6 +44,28 @@ Before proceeding with the installation, ensure that you have [Isaac Sim 4.5.0](
4444
$ cd .. && conda activate internutopia # or your conda env name
4545
```
4646

47+
### Install from source (Linux & uv)
48+
49+
Before proceeding with the installation, ensure that you have [Isaac Sim 4.5.0](https://docs.isaacsim.omniverse.nvidia.com/4.5.0/installation/install_workstation.html) and [uv](https://docs.astral.sh/uv/getting-started/installation/) installed.
50+
51+
1. Clone the InternUtopia repository with [git](https://git-scm.com).
52+
```bash
53+
$ git clone git@github.com:InternRobotics/InternUtopia.git
54+
```
55+
56+
2. Navigate to InternUtopia root path and configure the conda environment.
57+
58+
```bash
59+
$ cd PATH/TO/INTERNUTOPIA/ROOT
60+
61+
# Configure env with prompt. Need to execute every time when opening a new terminal.
62+
$ ./setup_uv.sh
63+
64+
# run with uv
65+
$ source .venv/bin/activate
66+
$ python internutopia/demo/h1_locomotion.py
67+
```
68+
4769
### Install from PyPI (Linux)
4870

4971
Before proceeding with the installation, ensure that you have [Isaac Sim 4.5.0](https://docs.isaacsim.omniverse.nvidia.com/4.5.0/installation/install_workstation.html) and [Conda](https://conda.io/projects/conda/en/latest/user-guide/install/index.html) installed.

0 commit comments

Comments
 (0)