update devguide notes for installing emane
This commit is contained in:
parent
9f3a3cef28
commit
8fe6bc76ca
1 changed files with 25 additions and 15 deletions
|
@ -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)
|
[Build EMANE](https://github.com/adjacentlink/emane/wiki/Build#general-build-instructions)
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# after building emane above
|
# clone emane repo
|
||||||
# ./autogen.sh && ./configure --prefix=/usr && make
|
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
|
python3 -m pipenv install $EMANEREPO/src/python
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue