Skip to content

Instantly share code, notes, and snippets.

@mido3ds
Last active November 18, 2020 18:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mido3ds/cfff3d58042e8b728031cd9333305392 to your computer and use it in GitHub Desktop.
Save mido3ds/cfff3d58042e8b728031cd9333305392 to your computer and use it in GitHub Desktop.
Install Omnet++ on debian/ubuntu

To install Omnet++ on debian/ubuntu

$ sudo apt update && sudo apt install -y build-essential gcc g++ bison flex perl \
 python python3 qt5-default libqt5opengl5-dev tcl-dev tk-dev \
 libxml2-dev zlib1g-dev default-jre doxygen graphviz wget tar qtbase5-dev qt5-qmake libopenscenegraph-dev &&
sudo apt install -y libosgearth-dev &&
wget -c https://github.com/omnetpp/omnetpp/releases/download/omnetpp-5.6.2/omnetpp-5.6.2-src-linux.tgz &&
tar xzf omnetpp-5.6.2-src-linux.tgz &&
cd omnetpp-5.6.2 &&
source setenv &&
./configure &&
make -j$(( $(nproc) * 2)) &&
make install-desktop-icon &&
make install-menu-item

You should find app icon on desktop, and in apps menu. To run it from terminal instead, go to omnetpp directory: $ source setenv && omnetpp

@mido3ds
Copy link
Author

mido3ds commented Nov 8, 2020

In case if you have anaconda installed you may need to see this
BVLC/caffe#1559 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment