Skip to content

Commit

Permalink
Add installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonymDavid committed Jul 31, 2024
1 parent 99f3849 commit f15b61e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,39 @@ Autoware is an open-source software stack for self-driving vehicles, built on th

To learn more about using or developing Autoware, refer to the [Autoware documentation site](https://autowarefoundation.github.io/autoware-documentation/main/). You can find the source for the documentation in [autowarefoundation/autoware-documentation](https://github.com/autowarefoundation/autoware-documentation).

## Installation

### Clone the repositories
```
git clone https://github.com/jkk-research/autoware
cd autoware
mkdir src
vcs import src < autoware.repos
```
### Install dependencies
```
rosdep install --from-paths src --ignore-src --rosdistro $ROS_DISTRO -r -y
```
### Build
```
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
```

## Update workspace

### Update the repositories
```
git pull
vcs import src < autoware.repos
vcs pull src
```
### Install dependencies and build
```
rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
```

## Repository overview

- [autowarefoundation/autoware](https://github.com/autowarefoundation/autoware)
Expand Down

0 comments on commit f15b61e

Please sign in to comment.