apollo_software_installation_guide.md 3.3 KB
Newer Older
N
Natasha Dsouza 已提交
1
# Software Overview of Apollo
2 3 4 5 6 7 8

Apollo has been initiated to provide an open, comprehensive, and reliable software platform for its partners in the automotive and autonomous-driving industries. Partners can use the Apollo software platform and the reference hardware that Apollo has certified as a template to customize in the development of their own autonomous vehicles.

# Apollo Software Installation

This section includes:

N
Natasha Dsouza 已提交
9 10 11 12
- [Download the Apollo Release Package](#download-apollo-source)
- [Set up the Docker environment](#Set-up-the-Docker-environment)
- [Support a new Vehicle in DreamView](#Support-a-new-Vehicle-in-DreamView)
- [Run Apollo in Ubuntu 16](#Run-Apollo-in-Ubuntu-16)
13

N
Natasha Dsouza 已提交
14
Before getting started, please make sure you have installed Ubuntu Linux 14.04.3 and the Apollo Kernel following the steps in the [Apollo core Software Installation Guide](https://github.com/ApolloAuto/apollo/blob/master/docs/quickstart/apollo_1_0_hardware_system_installation_guide.md#installing-the-software-for-the-ipc).
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

## Download Apollo Source

1. Download Apollo source code from the [github source](https://github.com/ApolloAuto/apollo/) and check out the correct branch:

    ```
    git clone git@github.com:ApolloAuto/apollo.git
    cd apollo
    git checkout [release_branch_name]
    ```

2. Set up environment variable `APOLLO_HOME` by the following command:

    ```
    echo "export APOLLO_HOME=$(pwd)" >> ~/.bashrc && source ~/.bashrc
    ```

3. Open a new terminal or run `source ~/.bashrc` in an existing terminal.


![tip](images/tip_icon.png) In the following sections, it is assumed that the Apollo directory is located in  `$APOLLO_HOME`.

N
Natasha Dsouza 已提交
37
## Set Up the Docker Environment
38 39 40 41 42

The Docker container is the simplest way to set up the build environment for Apollo.

For more information, see the detailed Docker tutorial [here](https://docs.docker.com/).

43 44
1. Please follow the
[official guide to install the docker-ce](https://docs.docker.com/install/linux/docker-ce/ubuntu).
45

46 47
Don't forget the
[post-installation steps for Linux](https://docs.docker.com/install/linux/linux-postinstall).
48

49
2. After the installation, log out and then log back into the system to enable Docker.
50 51 52 53 54 55 56

3. (Optional) If you already have Docker installed (before you installed the Apollo Kernel), add the following line in `/etc/default/docker`:

    ```
    DOCKER_OPTS = "-s overlay"
    ```

N
Natasha Dsouza 已提交
57
We encourage you to continue the Build process using [Build the Dev docker environment](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_build_and_release.md#build_release) if you have not already set it up.
58

N
Natasha Dsouza 已提交
59
## Support a new Vehicle in DreamView
60

N
Natasha Dsouza 已提交
61
In order to support a new vehicle in DreamView, please follow the steps below:
62

N
Natasha Dsouza 已提交
63
1. Create a new folder for your vehicle under `modules/calibration/data`
64

N
Natasha Dsouza 已提交
65
2. There is already a sample file in the `modules/calibration/data` folder named `mkz_example`. Refer to this structure and include all necessary configuration files in the same file structure as “mkz_example”. Remember to update the configuration files with your own parameters if needed. 
66

N
Natasha Dsouza 已提交
67
3. Restart DreamView and you will be able to see your new vehicle (name is the same as your newly created folder) in the selected vehicle.
68

N
Natasha Dsouza 已提交
69
## Run Apollo in Ubuntu 16
70 71

Please refer to
N
Natasha Dsouza 已提交
72
[How to run Apollo with Ubuntu 16](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_run_apollo_2.5_with_ubuntu16.md)