Skip to content

Commit 4f0aa25

Browse files
committed
Fixes for tutorial
1 parent 2e43ab6 commit 4f0aa25

File tree

3 files changed

+223
-52
lines changed

3 files changed

+223
-52
lines changed

README.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ cd rl-tutorial-ares-basic
6060

6161
You need to install the dependencies before running the notebooks.
6262

63+
### Install `ffmpeg`
64+
Please also run these commands to install `ffmpeg`:
65+
- OS X: `brew install ffmpeg`
66+
- Ubuntu: `sudo apt-get install ffmpeg`
67+
- With pip: `pip install imageio-ffmpeg`
68+
6369
### Using conda
6470

6571
If you don't have conda installed already and want to use conda for environment management, you can install the miniconda as [described here](https://docs.conda.io/projects/miniconda/en/latest/miniconda-install.html).
@@ -69,12 +75,6 @@ If you don't have conda installed already and want to use conda for environment
6975
- Install the required packages via `pip install -r requirements.txt`.
7076
- Additional installation steps:
7177

72-
Please also run these commands to install `ffmpeg`:
73-
- OS X: `brew install ffmpeg`
74-
- Ubuntu: `sudo apt-get install ffmpeg`
75-
- With pip: `pip install imageio-ffmpeg`
76-
77-
Finally, install the notebook extensions if you want to see them in slide mode:
7878
```bash
7979
python -m jupyter contrib nbextension install --user
8080
python -m jupyter nbextension enable varInspector/main
@@ -100,11 +100,6 @@ Then, install the packages with pip within the activated environment
100100
python -m pip install -r requirements.txt
101101
```
102102

103-
Please also run these commands to install `ffmpeg`:
104-
- OS X: `brew install ffmpeg`
105-
- Ubuntu: `sudo apt-get install ffmpeg`
106-
- With pip: `pip install imageio-ffmpeg`
107-
108103
Finally, install the notebook extensions if you want to see them in slide mode:
109104
```bash
110105
python -m jupyter contrib nbextension install --user

requirements.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
cheetah-accelerator
22
gymnasium
3-
imageio==2.4.1
3+
gym
4+
imageio==2.5
45
ipywidgets
6+
ipython
7+
ipywidgets
8+
jupyter_contrib_nbextensions
59
matplotlib
6-
moviepy
10+
moviepy==1.0.3
711
names
12+
notebook==6.4.12
813
opencv-python
914
seaborn
1015
pyyaml
11-
stable-baselines3
12-
notebook==6.4.12
13-
jupyter_contrib_nbextensions
16+
requests
1417
RISE
18+
shimmy
19+
stable-baselines3
1520
traitlets==5.9.0
16-
ipython
17-
ipywidgets
1821

0 commit comments

Comments
 (0)