remove python plugin install

This commit is contained in:
Kosta Mushkin
2025-06-25 17:08:06 -07:00
parent 6556eeb337
commit 6ef2123cc7
-10
View File
@@ -62,16 +62,6 @@ if ($pythonVersion) {
# Clean up Python installer # Clean up Python installer
Remove-Item -Path $pythonInstaller -Force Remove-Item -Path $pythonInstaller -Force
# Install VS Code Python Extension
Write-Host "`nInstalling VS Code Python Extension..." -ForegroundColor Yellow
$vscodePath = "C:\Program Files\Microsoft VS Code\Code.exe"
if (Test-Path $vscodePath) {
& $vscodePath --install-extension ms-python.python
Write-Host "VS Code Python extension installed!" -ForegroundColor Green
} else {
Write-Host "VS Code not found. Please install VS Code first." -ForegroundColor Red
}
# Create installation directory # Create installation directory
if (!(Test-Path $InstallPath)) { if (!(Test-Path $InstallPath)) {
Write-Host "Creating installation directory..." -ForegroundColor Yellow Write-Host "Creating installation directory..." -ForegroundColor Yellow