You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,20 @@
3
3
## Overview
4
4
Not Overcomplicated Network Simulator (NoNS) is a free open source project aiming to build a discrete-event network simulator targeted at easy testing of congestion control algorithms.
5
5
6
+
## Dependencies
7
+
8
+
NoNS need gnuplot & graphiz to generate plots, so install it:
9
+
```
10
+
sudo apt install --fix-missing gnuplot
11
+
sudo apt install --fix-missing graphviz
12
+
```
13
+
14
+
Other dependecies are designed as git submodules, so to install them, run
15
+
```
16
+
git submodule init
17
+
git submodule update --init --recursive
18
+
```
19
+
6
20
## Build project
7
21
NoNS uses CMake build manager, so project builds in this way:
0 commit comments