From 5e86f621bf3f220d75a996a23aca42b06d652a7c Mon Sep 17 00:00:00 2001 From: the-database <25811902+the-database@users.noreply.github.com> Date: Sat, 27 Jul 2024 01:42:53 -0400 Subject: [PATCH] Update PythonService.cs --- MangaJaNaiConverterGui/Services/PythonService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)}"; } }