-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
layers/meta-opentrons: binding for opentrons cli
These bindings aren't installing from python properly, this will manually add them. Closes RESC-285
- Loading branch information
Showing
3 changed files
with
15 additions
and
3 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
layers/meta-opentrons/recipes-robot/opentrons-user-environment/files/opentrons_execute
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env sh | ||
export RUNNING_ON_VERDIN=1 | ||
export OT_API_FF_enableOT3HardwareController="true" | ||
export PYTHONPATH=$PYTHONPATH:/opt/opentrons-robot-server | ||
python3 -m opentrons.execute "$@" |
5 changes: 5 additions & 0 deletions
5
layers/meta-opentrons/recipes-robot/opentrons-user-environment/files/opentrons_simulate
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env sh | ||
export RUNNING_ON_VERDIN=1 | ||
export OT_API_FF_enableOT3HardwareController="true" | ||
export PYTHONPATH=$PYTHONPATH:/opt/opentrons-robot-server | ||
python3 -m opentrons.simulate "$@" |
This file contains 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