From 29a04d913f428355c8eacbf89d33b82a0117045a Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Tue, 20 Apr 2021 16:46:22 +0200 Subject: [PATCH] and OPENPYPE_ROOT to sys.path --- start.py | 1 + 1 file changed, 1 insertion(+) diff --git a/start.py b/start.py index a2a03f112c..0d4addf59f 100644 --- a/start.py +++ b/start.py @@ -115,6 +115,7 @@ else: os.path.join(OPENPYPE_ROOT, "dependencies") ) sys.path.append(frozen_libs) + sys.path.insert(0, OPENPYPE_ROOT) # add stuff from `/dependencies` to PYTHONPATH. pythonpath = os.getenv("PYTHONPATH", "") paths = pythonpath.split(os.pathsep)