https://github.com/duckietown/Software
Raw File
Tip revision: 74d6fcbd6596b84ca8323e34366eda5e42dcb38f authored by Roxana on 15 January 2016, 20:36:16 UTC
Added blender-created mesh (.dae) file, and corresponding png file,
Tip revision: 74d6fcb
environment.sh
#!/usr/bin/env bash
echo "Activating ROS"
source /opt/ros/indigo/setup.bash
echo "Setting up PYTHONPATH"
export PYTHONPATH=/home/ubuntu/duckietown/catkin_ws/src:$PYTHONPATH
echo "Activating development"
source ~/duckietown/catkin_ws/devel/setup.bash
echo "Setup ROS_HOSTNAME"
export ROS_HOSTNAME=$HOSTNAME.local
exec "$@" #Passes arguments. Need this for ROS remote launching to work.
back to top