Skip to content

Commit

Permalink
doc: minor update to readme python binding build part
Browse files Browse the repository at this point in the history
  • Loading branch information
rdu-weston committed May 9, 2024
1 parent bfa180d commit 055a38d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ $ cmake .. && make
If you need Python binding, you can build the package with the following command

```
$ cmake -DENABLE_PYTHON_BINDING=ON .. && make
$ git clone --recursive https://github.com/westonrobot/ugv_sdk.git
$ cd ugv_sdk
# if you've checked out ugv_sdk without --recursive, you can run the following command to fetch the submodule
$ git submodule update --init --recursive
$ mkdir build && cd build
$ cmake -DPYTHON_BINDING=ON .. && make
```

### Build the package as a Python package
Expand Down

0 comments on commit 055a38d

Please sign in to comment.