Skip to content

Commit ea9487e

Browse files
committed
remove msg
1 parent 1d486c0 commit ea9487e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

functions/helperFunctions.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1308,7 +1308,7 @@ function startCompressor(){
13081308
function generate_pythonEnv() {
13091309
$pythonRegistryPath = "HKLM:\SOFTWARE\Python\PythonCore"
13101310
if (Test-Path $pythonRegistryPath) {
1311-
Write-Output "Python already installed."
1311+
13121312
} else {
13131313
Write-Host "Installing Python, please wait..."
13141314
$PYinstaller = "python-3.11.0-amd64.exe"
@@ -1326,7 +1326,7 @@ function check_for_pip($packageName) {
13261326
$isInstalled = python -c $checkCommand
13271327

13281328
if ($isInstalled -eq "True") {
1329-
Write-Host "'$packageName' already installed."
1329+
13301330
} else {
13311331
Write-Host "Installing..."
13321332
python -m pip install $packageName

0 commit comments

Comments
 (0)