Skip to content

Commit

Permalink
Update bullet physics install instructions in README (#437)
Browse files Browse the repository at this point in the history
* update readme with bullet install instructions
  • Loading branch information
matthewjmay committed Jan 21, 2020
1 parent 2684f62 commit d87fce6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,19 @@ We highly recommend installing a [miniconda](https://docs.conda.io/en/latest/min
```

(Under development) With physics simulation via [Bullet Physics SDK](https://github.com/bulletphysics/bullet3/):
First, install [Bullet Physics](https://github.com/bulletphysics/bullet3/). Next use
First, install Bullet Physics using your system's package manager.

Mac
```bash
brew install bullet
```

Linux
```bash
sudo apt-get install libbullet-dev
```

Next, enable bullet physics build via:
```bash
python setup.py install --bullet # build habitat with bullet physics
```
Expand Down

0 comments on commit d87fce6

Please sign in to comment.