From 067ff0a38bab1bb25c0131f07b8ba05830a799ed Mon Sep 17 00:00:00 2001 From: Bazza Date: Mon, 18 Dec 2023 18:14:11 -0300 Subject: [PATCH] Update __init__.py (#97) A simple error in the direction of the linux directory --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index cf5587f..a1940d9 100644 --- a/__init__.py +++ b/__init__.py @@ -546,7 +546,7 @@ def python_exec(): path = sys.executable return os.path.abspath(path) elif isLinux(): - return os.path.join(sys.prefix, "sys.prefix/bin", "python") + return os.path.join(sys.prefix, "bin", "python") else: print("sorry, still not implemented for ", os.name, " - ", platform.system)