├── .gitignore ├── CreateDockerFile.ipynb ├── Dockerfile ├── LICENSE ├── README.md ├── UI.odg ├── components ├── __init__.py ├── apt.py ├── catkin.py ├── cmake.py ├── cmake_update.py ├── copy.py ├── cuda.py ├── cudnn.py ├── custom.py ├── icub.py ├── jupyterlab.py ├── matlab.py ├── pip.py ├── pip3.py ├── repo.py ├── ros.py ├── source.py ├── tail.py └── ubuntu.py ├── form.py ├── roslab_create.py └── ui_form.png /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /CreateDockerFile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/CreateDockerFile.ipynb -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/README.md -------------------------------------------------------------------------------- /UI.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/UI.odg -------------------------------------------------------------------------------- /components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/apt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/apt.py -------------------------------------------------------------------------------- /components/catkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/catkin.py -------------------------------------------------------------------------------- /components/cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/cmake.py -------------------------------------------------------------------------------- /components/cmake_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/cmake_update.py -------------------------------------------------------------------------------- /components/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/copy.py -------------------------------------------------------------------------------- /components/cuda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/cuda.py -------------------------------------------------------------------------------- /components/cudnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/cudnn.py -------------------------------------------------------------------------------- /components/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/custom.py -------------------------------------------------------------------------------- /components/icub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/icub.py -------------------------------------------------------------------------------- /components/jupyterlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/jupyterlab.py -------------------------------------------------------------------------------- /components/matlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/matlab.py -------------------------------------------------------------------------------- /components/pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/pip.py -------------------------------------------------------------------------------- /components/pip3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/pip3.py -------------------------------------------------------------------------------- /components/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/repo.py -------------------------------------------------------------------------------- /components/ros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/ros.py -------------------------------------------------------------------------------- /components/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/source.py -------------------------------------------------------------------------------- /components/tail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/tail.py -------------------------------------------------------------------------------- /components/ubuntu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/components/ubuntu.py -------------------------------------------------------------------------------- /form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/form.py -------------------------------------------------------------------------------- /roslab_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/roslab_create.py -------------------------------------------------------------------------------- /ui_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobInLabUJI/ROSLab/HEAD/ui_form.png --------------------------------------------------------------------------------