Update setup.sh
Browse files
setup.sh
CHANGED
|
@@ -1,2 +1,7 @@
|
|
| 1 |
#!/bin/bash
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
#!/bin/bash
|
| 2 |
+
apt-get update
|
| 3 |
+
apt-get install -y graphviz
|
| 4 |
+
export PATH=$PATH:/usr/bin:/usr/local/bin
|
| 5 |
+
dot -c # This updates the plugins cache for Graphviz
|
| 6 |
+
which dot # This will show the path to the dot executable
|
| 7 |
+
dot -V # This will show the version of Graphviz installed
|