Add setup.sh and streamline GUIDE.md setup#3
Merged
kavya-chennoju merged 3 commits intofeat/device-connect-integration-draftfrom Mar 17, 2026
Merged
Conversation
- Add setup.sh: handles uv install, Python 3.12, venv creation, and package installation in one command - Simplify GUIDE.md setup to two steps: install and start a robot - Replace manual Python/venv/pip steps with setup.sh reference - Add screen session management for running the robot in the background
rjm-git
reviewed
Mar 17, 2026
| # Ubuntu: sudo apt install python3.12 python3.12-venv | ||
|
|
||
| python3.12 -m venv .venv # Python 3.12 recommended (MuJoCo has no 3.14 wheels) | ||
| bash strands_robots/device_connect/setup.sh |
Collaborator
There was a problem hiding this comment.
Probably simpler to just vend this chmod 755 and simply: ./path/to/setup.sh
Collaborator
Author
There was a problem hiding this comment.
updated, git already tracks it as executable.
rjm-git
reviewed
Mar 17, 2026
| ``` | ||
|
|
||
| **Start a robot (keep running in a separate terminal):** | ||
| This installs `uv`, Python 3.12, creates a venv, and installs all dependencies. |
Collaborator
There was a problem hiding this comment.
Can move this up to being a note in step 1 (as opposed to reading this after running setup script).
Collaborator
Author
There was a problem hiding this comment.
done moved to the top of the section.
rjm-git
reviewed
Mar 17, 2026
| " | ||
| # once online, Ctrl+a then d to detach | ||
| # screen -ls to list sessions | ||
| # screen -r robot to reattach |
rjm-git
approved these changes
Mar 17, 2026
Collaborator
rjm-git
left a comment
There was a problem hiding this comment.
Just some minor comments. Overall lgtm.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
setup.sh— one-command environment setup (installs uv, Python 3.12, creates venv, installs all deps)screensession management for running the robot in the backgroundTest plan
bash strands_robots/device_connect/setup.shfrom repo root — verify uv, Python 3.12, venv, and packages installscreen -ls/screen -r robotworkflow