# installing-requirements

## Install Ubuntu

The repository and its related components have been tested under the following Ubuntu distributions:

* ROS Kinetic: Ubuntu 16.04

If you do not have a Ubuntu distribution on your computer you can download it here

<http://www.ubuntu.com/download>

## Git - Version Control

### Install Git Software

Install the Git core components and some additional GUI's for the version control:

```
 sudo apt-get install git-core gitg gitk
```

### Set Up Git

Now it's time to configure your settings. To do this you need to open a new Terminal. First you need to tell git your name, so that it can properly label the commits you make:

```
 git config --global user.name "Your Name Here"
```

Git also saves your email address into the commits you make.

```
 git config --global user.email "your-email@youremail.com"
```

### Add your ssh key to GitHub

You can follow GitHub's documentation on ssh [here](https://help.github.com/articles/connecting-to-github-with-ssh/). Make sure that you are following the instructions for Linux.

## ROS - Robot Operating System

### Install ROS

The repository has been tested successfully with the following ROS distributions. Use the link behind a ROS distribution to get to the particular ROS installation instructions.

* ROS Kinetic - <http://wiki.ros.org/kinetic/Installation/Ubuntu>

NOTE: Do not forget to update your .bashrc!


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://b-it-bots.gitbook.io/wiki/gitbook-1/_getting-started/installing-requirements.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
