diff --git a/install-dependencies-unix.sh b/install-dependencies-unix.sh index d8823a4..a4f7743 100755 --- a/install-dependencies-unix.sh +++ b/install-dependencies-unix.sh @@ -1,7 +1,6 @@ #!/bin/bash sudo apt-get update && apt-get upgrade -y - sudo apt install python3 graphviz -y # add Graphviz to the system path diff --git a/install-dependencies-windows.ps1 b/install-dependencies-windows.ps1 index b4179f4..64555a2 100644 --- a/install-dependencies-windows.ps1 +++ b/install-dependencies-windows.ps1 @@ -2,6 +2,7 @@ winget install Python --accept-source-agreements --accept-package-agreements winget install graphviz --accept-source-agreements --accept-package-agreements + # add Graphviz to the system path $graphvizPath = "C:\Program Files\Graphviz\bin" $envPath = [Environment]::GetEnvironmentVariable("Path", [EnvironmentVariableTarget]::Machine)