Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update getting-started.rst #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/source/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,26 @@ Compiling and running ndnSIM
ndnSIM uses a standard NS-3 compilation procedure. Normally the following commands should be
sufficient to configure and build ndnSIM with python bindings enabled:

.. code-block:: bash

cd <pybindgen-folder>
./waf configure
./waf
sudo ./waf install

.. code-block:: bash

cd <ns-3-folder>
./waf configure --enable-examples
./waf

If you wish to specify the python version to be used then use the following command while configuring:

.. code-block:: bash

./waf configure --python=<python-path(/usr/bin/python3)>


On macOS (with MacPorts), you may need to modify the configure command to use MacPorts
version of python:

Expand Down