fix
This commit is contained in:
parent
7b36cd3461
commit
b0d2231677
@ -1,19 +1,20 @@
|
|||||||
$pythonVersion = "3.11.9"
|
$pythonVersion = "3.11.9"
|
||||||
$pythonInstallerUrl = "https://www.python.org/ftp/python/$pythonVersion/python-$pythonVersion-amd64.exe"
|
$pythonVersionShort = "3.11"
|
||||||
$pythonInstallerPath = "$env:TEMP\python-$pythonVersion-amd64.exe"
|
$pythonInstallerUrl = "https://www.python.org/ftp/python/${pythonVersion}/python-${pythonVersion}-amd64.exe"
|
||||||
|
$pythonInstallerPath = "$env:TEMP\python-${pythonVersion}.exe"
|
||||||
$pyActivate = Join-Path . "Scripts\Activate.ps1"
|
$pyActivate = Join-Path . "Scripts\Activate.ps1"
|
||||||
|
|
||||||
$espeakngVersion = "1.51"
|
$espeakngVersion = "1.51"
|
||||||
$espeakngInstallerUrl = "https://github.com/espeak-ng/espeak-ng/releases/download/$espeakngVersion/espeak-ng-X64.msi"
|
$espeakngInstallerUrl = "https://github.com/espeak-ng/espeak-ng/releases/download/${espeakngVersion}/espeak-ng-X64.msi"
|
||||||
$espeakngInstallerPath = "$env:TEMP\espeak-ng-X64.msi"
|
$espeakngInstallerPath = "$env:TEMP\espeak-ng-${espeakngVersion}.msi"
|
||||||
|
|
||||||
$msBuildToolsVersion = "17"
|
$msBuildToolsVersion = "17"
|
||||||
$msBuildToolsInstallerUrl = "https://aka.ms/vs/$msBuildToolsVersion/release/vs_BuildTools.exe"
|
$msBuildToolsInstallerUrl = "https://aka.ms/vs/${msBuildToolsVersion}/release/vs_BuildTools.exe"
|
||||||
$msBuildToolsInstallerPath = "$env:TEMP\vs_BuildTools$msBuildToolsVersion.exe"
|
$msBuildToolsInstallerPath = "$env:TEMP\vs_BuildTools${msBuildToolsVersion}.exe"
|
||||||
|
|
||||||
$cudaToolkitVersion = "12.4.1_551.78"
|
$cudaToolkitVersion = "12.4.1_551.78"
|
||||||
$cudaToolkitInstallerUrl = "https://developer.download.nvidia.com/compute/cuda/12.4.1/local_installers/cuda_$cudaToolkitVersion_windows.exe"
|
$cudaToolkitInstallerUrl = "https://developer.download.nvidia.com/compute/cuda/12.4.1/local_installers/cuda_${cudaToolkitVersion}_windows.exe"
|
||||||
$cudaToolkitInstallerPath = "$env:TEMP\cudaToolkit_$cudaToolkitVersion.exe"
|
$cudaToolkitInstallerPath = "$env:TEMP\cudaToolkit_${cudaToolkitVersion}.exe"
|
||||||
|
|
||||||
$pytorchVersion = "CUDA 12.4"
|
$pytorchVersion = "CUDA 12.4"
|
||||||
$pytorchInstallCommand = "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
|
$pytorchInstallCommand = "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
|
||||||
@ -44,16 +45,16 @@ function Install-Python {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Setup-Python-Environment {
|
function Setup-Python-Environment {
|
||||||
python -m venv .
|
py -$pythonVersionShort -m venv .
|
||||||
& $pyActivate
|
& $pyActivate
|
||||||
pip install --upgrade pip setuptools wheel
|
python -m pip install --upgrade pip setuptools wheel
|
||||||
deactivate
|
deactivate
|
||||||
}
|
}
|
||||||
|
|
||||||
function Install-Espeakng {
|
function Install-Espeakng {
|
||||||
Write-Output "Installing eSpeak-ng $espeakngVersion..."
|
Write-Output "Installing eSpeak-ng $espeakngVersion..."
|
||||||
Invoke-WebRequest -Uri $espeakngInstallerUrl -OutFile $espeakngInstallerPath
|
Invoke-WebRequest -Uri $espeakngInstallerUrl -OutFile $espeakngInstallerPath
|
||||||
Start-Process -FilePath "msiexec.exe" -ArgumentList "/i `"$espeakngInstallerPath`" /quiet"
|
Start-Process -FilePath "msiexec.exe" -ArgumentList "/i `"$espeakngInstallerPath`" /passive" -Wait
|
||||||
Remove-Item $espeakngInstallerPath -Force
|
Remove-Item $espeakngInstallerPath -Force
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,21 +62,21 @@ function Install-MsBuildTools {
|
|||||||
Write-Output "Installing MS Build Tools $msBuildToolsVersion..."
|
Write-Output "Installing MS Build Tools $msBuildToolsVersion..."
|
||||||
Invoke-WebRequest -Uri $msBuildToolsInstallerUrl -OutFile $msBuildToolsInstallerPath
|
Invoke-WebRequest -Uri $msBuildToolsInstallerUrl -OutFile $msBuildToolsInstallerPath
|
||||||
Start-Process -FilePath $msBuildToolsInstallerPath -ArgumentList `
|
Start-Process -FilePath $msBuildToolsInstallerPath -ArgumentList `
|
||||||
"--quiet --wait --norestart --add Microsoft.VisualStudio.Workload.NativeDesktop" -Wait
|
"--passive --wait --norestart --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended" -Wait
|
||||||
Remove-Item $msBuildToolsInstallerPath -Force
|
Remove-Item $msBuildToolsInstallerPath -Force
|
||||||
}
|
}
|
||||||
|
|
||||||
function Install-CUDA {
|
function Install-CUDA {
|
||||||
Write-Output "Installing CUDA Toolkit $cudaToolkitVersion..."
|
Write-Output "Installing CUDA Toolkit $cudaToolkitVersion..."
|
||||||
Invoke-WebRequest -Uri $cudaToolkitInstallerUrl -OutFile $cudaToolkitInstallerPath
|
Invoke-WebRequest -Uri $cudaToolkitInstallerUrl -OutFile $cudaToolkitInstallerPath
|
||||||
Start-Process -FilePath $cudaToolkitInstallerPath -ArgumentList "--silent --toolkit" -Wait
|
Start-Process -FilePath $cudaToolkitInstallerPath -ArgumentList "-s -n" -Wait
|
||||||
Remove-Item $cudaToolkitInstallerPath -Force
|
Remove-Item $cudaToolkitInstallerPath -Force
|
||||||
}
|
}
|
||||||
|
|
||||||
function Install-PyTorch {
|
function Install-PyTorch {
|
||||||
Write-Output "Installing PyTorch $pytorchVersion..."
|
Write-Output "Installing PyTorch $pytorchVersion..."
|
||||||
& $pyActivate
|
& $pyActivate
|
||||||
Invoke-Expression $pytorchInstallCommand
|
Invoke-Expression "$pytorchInstallCommand --quiet"
|
||||||
deactivate
|
deactivate
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -87,13 +88,15 @@ function Install-Coqui {
|
|||||||
|
|
||||||
& $pyActivate
|
& $pyActivate
|
||||||
cd coqui-ai-TTS-$coquiVersion
|
cd coqui-ai-TTS-$coquiVersion
|
||||||
pip install -e .
|
pip install -e . --quiet
|
||||||
deactivate
|
deactivate
|
||||||
|
cd ..
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Write-Output "Starting voice environment installation."
|
Write-Output "Starting voice environment installation."
|
||||||
|
Set-ExecutionPolicy Unrestricted
|
||||||
if (-not (Is-PythonInstalled)) {
|
if (-not (Is-PythonInstalled)) {
|
||||||
Install-Python
|
Install-Python
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user