-
Notifications
You must be signed in to change notification settings - Fork 156
Fix example demos: tensor handling, keyboard teleop #1952
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
base: main
Are you sure you want to change the base?
Changes from 3 commits
27f8212
10620c8
ac12a6f
476d8de
36ad54a
f5b0eae
e3fd762
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -371,7 +371,13 @@ fi | |
| if [ "$JOYLO" = true ]; then | ||
| echo "Installing JoyLo..." | ||
| [ ! -d "joylo" ] && { echo "ERROR: joylo directory not found"; exit 1; } | ||
| pip install -e "$WORKDIR/joylo" | ||
| # Constrain deps to keep OmniGibson / Isaac Sim compatible | ||
| JOYLO_CONSTRAINTS_FILE="/tmp/joylo-constraints.txt" | ||
| cat > "$JOYLO_CONSTRAINTS_FILE" << 'EOF' | ||
| opencv-contrib-python<=4.11.0.86 | ||
| numpy<2 | ||
| EOF | ||
| pip install -e "$WORKDIR/joylo" -c "$JOYLO_CONSTRAINTS_FILE" | ||
|
Comment on lines
374
to
381
|
||
| fi | ||
|
|
||
| # Install Eval | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.