diff --git a/MangaJaNaiConverterGui/Services/PythonService.cs b/MangaJaNaiConverterGui/Services/PythonService.cs index 5581413..e13d9cf 100644 --- a/MangaJaNaiConverterGui/Services/PythonService.cs +++ b/MangaJaNaiConverterGui/Services/PythonService.cs @@ -148,7 +148,7 @@ public string InstallUpdatePythonDependenciesCommand var relPythonPath = @".\python\python\python.exe"; - return $@"{relPythonPath} -m pip install torch==2.1.0 torchvision==0.18.1 --index-url https://download.pytorch.org/whl/cu121 && {relPythonPath} -m pip install {string.Join(" ", dependencies)}"; + return $@"{relPythonPath} -m pip install torch==2.1.2 torchvision==0.16.2 --index-url https://download.pytorch.org/whl/cu121 && {relPythonPath} -m pip install {string.Join(" ", dependencies)}"; } }