Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added fix for ulimit error during macOS binary install #505

Merged
merged 3 commits into from
Sep 6, 2024
Merged
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
17 changes: 17 additions & 0 deletions ionic/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,23 @@ GZ_CONFIG_PATH=<path_to_install_dir>/share/gz/

## macOS

### Maximum number of open files reached `ulimit` error
When installing using homebrew, you may see the following error message:

```bash
Error: The maximum number of open files on this system has been reached. Use 'ulimit -n' to increase this limit.
```

As suggested in the error message, run the command below and check the output. The default value is set to `256` which is too low.
```bash
ulimit -n
```

Run the following command to increase the open files `ulimit` and then proceed with the homebrew install:
```bash
ulimit -n 10240
```

### Unable to find `urdf_model.h` error
After installing all the dependencies and starting the build process, you may encounter an error that looks like this:

Expand Down
Loading