check if wsgi is installed code example
Example 1: how to check if pip is installed
File"stdin",line 1
pip list
Syntax Error: invalid syntax
Example 2: powershell check if software is installed
$software = "Microsoft .NET Core Runtime - 3.1.0 (x64)";
$installed = (Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Where { $_.DisplayName -eq $software }) -ne $null
If(-Not $installed) {
Write-Host "'$software' is NOT installed.";
} else {
Write-Host "'$software' is installed."
}