-
Notifications
You must be signed in to change notification settings - Fork 916
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
[Bug Report] 2 ModuleNotFoundError's when going through Orbit installation #406
Comments
From what I understand, the availability of the I tried to test this but I am not sure how. Here are details
Confirms there not and |
I have encountered a similar issue with the toml module when using the Python executable provided by Isaac Sim on Ubuntu 22.04. However, the problem was resolved when I installed Orbit using Conda environment. |
I was able to get it working using the solution described here: #103 (comment) I think the full solution requires modifying |
) # Description Enables running `orbit -t` from any directory Fixes isaac-sim#405 ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./orbit.sh --format` - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] I have run all the tests with `./orbit.sh --test` and they pass - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there --------- Signed-off-by: jsmith-bdai <142246516+jsmith-bdai@users.noreply.github.com> Co-authored-by: Mayank Mittal <12863862+Mayankm96@users.noreply.github.com>
# Description When I updated `run_all_tests.sh` to be runnable from any dir (isaac-sim#406), some debugging prints accidentally made it into the commit 😅 These make it quite hard to read the test output. This PR removes the debugging `print()` calls and replaces a few others with `logging` calls for consistency. <!-- As a practice, it is recommended to open an issue to have discussions on the proposed pull request. This makes it easier for the community to keep track of what is being developed or added, and if a given feature is demanded by more than one party. --> ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./orbit.sh --format` - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] I have run all the tests with `./orbit.sh --test` and they pass - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task -->
) # Description Enables running `orbit -t` from any directory Fixes isaac-sim#405 ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./orbit.sh --format` - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] I have run all the tests with `./orbit.sh --test` and they pass - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there --------- Signed-off-by: jsmith-bdai <142246516+jsmith-bdai@users.noreply.github.com> Co-authored-by: Mayank Mittal <12863862+Mayankm96@users.noreply.github.com>
# Description When I updated `run_all_tests.sh` to be runnable from any dir (isaac-sim#406), some debugging prints accidentally made it into the commit 😅 These make it quite hard to read the test output. This PR removes the debugging `print()` calls and replaces a few others with `logging` calls for consistency. <!-- As a practice, it is recommended to open an issue to have discussions on the proposed pull request. This makes it easier for the community to keep track of what is being developed or added, and if a given feature is demanded by more than one party. --> ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./orbit.sh --format` - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] I have run all the tests with `./orbit.sh --test` and they pass - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task -->
I was attempting to go through the Orbit Installation setup and ran into some issues.
Error 1:
ModuleNotFoundError: No module named 'toml'
Solution
I used the virtual environment setup and previously ran
I think this is supposed to use
when creating the environment which has
I was able to fix by manually installing
toml
Error 2:
ModuleNotFoundError: No module named 'omni.isaac.kit'
Solution
I am not sure how to solve this one.
I previously ran
I see
omni.isaac.kit
in the_isaac_sim/exts
folder so I assume it should be availableAny recommendations how to install the
omni.isaac.kit
module?(Or what step was supposed to implicitly install it?)
System Info
Ubuntu 20.04.6 LTS
Isaac Sim 2023.1.1
The text was updated successfully, but these errors were encountered: