简体   繁体   中英

ns3, Python3 has no module named 'ns'

I am using a virtual box to build.network simulator 3(ns3), Ubuntu version: Linux Server 20.04 LTS

the Linux command that I had executed are

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install gcc g++ python python3 -y
sudo apt-get install python3-setuptools git mercurial -y
sudo apt-get install zip unzip  
apt-get install cmake libc6-dev libc6-dev-i386 libclang-6.0-dev llvm-6.0-dev automake -y

sudo apt-get install -y python-gi-cairo 
sudo apt-get install -y gir1.2-gtk-3.0  
sudo apt-get install -y python-dev  
sudo apt-get install -y python3-dev 
sudo apt-get install -y qt5-default 
sudo apt-get install -y python3-pygraphviz
sudo apt install python3-pip
sudo apt-get install -y graphviz libgraphviz-dev
sudo pip3 install pygraphviz --install-option='--include-path=/usr/include/graphviz' --install-option='--library-path=/usr/lib/graphviz'

Then I use the bake to install the ns3 through following this page: install ns3 with bake

although the "bake.py show" tell me that pygraphvix is Missing, but since it is not an essential dependency, so I ignore it and continue build the ns3

after i successfully built the ns3, I follow the instruction here to execute the "./waf shell" command in the folder "/source/ns-3.29"

then I run the command and get the error:

root@ns3simulator:/home/ns3/source/ns-3.29# python3 examples/wireless/mixed-wired-wireless.py
Traceback (most recent call last):
  File "examples/wireless/mixed-wired-wireless.py", line 54, in <module>
    import ns.applications
ModuleNotFoundError: No module named 'ns'

Could anyone please help me for this?Thanks in advance.

The problem
"import ns.applications" ModuleNotFoundError: No module named 'ns'

is because there is a problem with the ns-3 installation and it is not able to do python binding itself and you need to manually configure it.

In my case, I have python 2.7 also installed

Go to

-> cd [PATH-to-your-ns3.29] -> /usr/bin/python2.7./waf configure

it will enable the python binding like this

Waf configuration

after this when you can see the python binding enabled you can run your python script without any error.

Hope it helps !!!

./ns3 configure --enable-python-bindings

Then run the python example. The libraries should get built. Here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM