run_skill.sh
Humanoid/fmc3-robotics-main/projects/RoboSkill/fmc3-robotics/gr2_sim/run_skill.sh
#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
if [[ -z "${CONDA_PREFIX:-}" ]]; then
if ! command -v conda >/dev/null 2>&1; then
echo "conda is not available in the current shell. Activate env_isaaclab first." >&2
exit 1
fi
eval "$(conda shell.bash hook)"
conda activate "${CONDA_ENV_NAME:-env_isaaclab}"
fi
export PYTHONUNBUFFERED=1
cd "${SCRIPT_DIR}"
python skill.py "$@"
Articoli correlati
run.py
run.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/deploy/run.py).
Leggi l'articolo →utils.py
utils.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/deploy/utils.py).
Leggi l'articolo →agent.py
agent.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/master/agents/agent.py).
Leggi l'articolo →planner.py
planner.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/master/agents/planner.py).
Leggi l'articolo →prompts.py
prompts.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/master/agents/prompts.py).
Leggi l'articolo →run.py
run.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/master/run.py).
Leggi l'articolo →