From fbf7c204d61ddf63ae5fe4806c76ee9159485c83 Mon Sep 17 00:00:00 2001 From: "tkv29@yahoo.de" Date: Fri, 31 May 2024 13:12:21 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20update=20dependency=20installer=20a?= =?UTF-8?q?nd=20requirements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install-dependencies-unix.sh | 1 - install-dependencies-windows.ps1 | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/install-dependencies-unix.sh b/install-dependencies-unix.sh index d8823a40..a4f7743a 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 b4179f44..64555a27 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)