Addon Manager: Fix call to get home_dir for pip

This commit is contained in:
Benjamin Nauck
2025-04-02 20:08:41 +02:00
committed by Chris Hennes
parent 61b95ac6cd
commit d480b83eea

View File

@@ -587,7 +587,7 @@ def create_pip_call(args: List[str]) -> List[str]:
call_args = ["pip", "--disable-pip-version-check"]
call_args.extend(args)
elif appimage:
python_exe = fci.DataPaths.home_dir + "bin/python"
python_exe = fci.DataPaths().home_dir + "bin/python"
call_args = [python_exe, "-m", "pip", "--disable-pip-version-check"]
call_args.extend(args)
else: