Skip to content

Commit 65069b3

Browse files
committed
Fix CI.
1 parent 8979ef3 commit 65069b3

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
5353
- name: Install Python deps
5454
run: |
55-
pip install --upgrade pip setuptools wheel
55+
python -m pip install --upgrade pip setuptools wheel
5656
pip install torch --index-url https://download.pytorch.org/whl/cpu
5757
pip install -e '.[dev,usd]' pynput
5858

.github/workflows/generic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
- name: Install python dependencies
128128
shell: bash
129129
run: |
130-
pip install --upgrade pip setuptools pkg-info wheel
130+
python -m pip install --upgrade pip setuptools pkg-info wheel
131131
132132
# FIXME: Must install torch>2.9.1 to support zerocopy on Apple Metal
133133
pip3 install torch --upgrade --index-url https://download.pytorch.org/whl/cpu

examples/drone/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ reinforcement learning (Nature 2023)](https://www.nature.com/articles/s41586-023
4343
At this stage, we have defined the environments. Now, we use the PPO implementation from `rsl-rl` to train the policy. First, install all Python dependencies via `pip`:
4444

4545
```bash
46-
pip install --upgrade pip
4746
pip install tensorboard rsl-rl-lib==2.2.4
4847
```
4948

0 commit comments

Comments
 (0)