Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/taxis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ First of all you need a running instance of Beaver. For instance, you can to the
Beaver is being run in a Docker container. You'll interact with it from your host machine. You need to install some Python dependencies to do that. We'll install them in a virtual environment 🐍

```sh
venv .venv
venv .venv # may be `virtualenv .venv` depending on your environment
source .venv/bin/activate
pip install -r requirements.txt

Expand All @@ -31,7 +31,7 @@ After notebook has started, make sure that selected kernel is `venv`
Now we can simulate traffic. The order is the same as what happened in production. This is because we know the departure and arrival times of each taxi trip, and can thus reproduce the exact same timeline. We'll apply a x15 speed-up to make things more exciting ⚡️

```sh
python simulate.py --speed 15
python simulate.py 15
```


Expand Down