From 9054f23555893b110e93dfc20f7811be8d78b89e Mon Sep 17 00:00:00 2001 From: alexpolo1 Date: Mon, 20 Nov 2023 08:33:52 +0100 Subject: [PATCH] Update trader_req_win.ps1 more --- trader_req_win.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trader_req_win.ps1 b/trader_req_win.ps1 index 235b6ab..5cd4c73 100644 --- a/trader_req_win.ps1 +++ b/trader_req_win.ps1 @@ -1,4 +1,4 @@ -# PowerShell script to install Python and required modules +# PowerShell script to install Python and required modules for automation # Check if Python is already installed $pythonInstalled = $False @@ -32,7 +32,7 @@ catch { } # Install required Python packages -$requiredModules = @("requests", "Pillow", "pyautogui") +$requiredModules = @("requests", "Pillow", "pyautogui", "keyboard") foreach ($module in $requiredModules) { pip install $module Write-Host "$module installed successfully."