update devguide notes for installing emane

This commit is contained in:
Blake Harnden 2019-12-20 12:36:29 -08:00
parent 9f3a3cef28
commit 8fe6bc76ca

View file

@ -87,8 +87,18 @@ EMANE bindings are not available through pip, you will need to build and install
[Build EMANE](https://github.com/adjacentlink/emane/wiki/Build#general-build-instructions)
```shell
# after building emane above
# ./autogen.sh && ./configure --prefix=/usr && make
# clone emane repo
git clone https://github.com/adjacentlink/emane.git
# install emane build deps
sudo apt install libxml2-dev libprotobuf-dev uuid-dev libpcap-dev protobuf-compiler
# build emane
./autogen.sh
./configure --prefix=/usr
make -j8
# install emane binding in pipenv
python3 -m pipenv install $EMANEREPO/src/python
```