We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d486c0 commit ea9487eCopy full SHA for ea9487e
functions/helperFunctions.ps1
@@ -1308,7 +1308,7 @@ function startCompressor(){
1308
function generate_pythonEnv() {
1309
$pythonRegistryPath = "HKLM:\SOFTWARE\Python\PythonCore"
1310
if (Test-Path $pythonRegistryPath) {
1311
- Write-Output "Python already installed."
+
1312
} else {
1313
Write-Host "Installing Python, please wait..."
1314
$PYinstaller = "python-3.11.0-amd64.exe"
@@ -1326,7 +1326,7 @@ function check_for_pip($packageName) {
1326
$isInstalled = python -c $checkCommand
1327
1328
if ($isInstalled -eq "True") {
1329
- Write-Host "'$packageName' already installed."
1330
1331
Write-Host "Installing..."
1332
python -m pip install $packageName
0 commit comments