diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2022-12-24 15:11:35 +0100 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-12-24 15:11:35 +0100 |
commit | c06e0708f6fc0f8e47f655e2c580167b2775b4ba (patch) | |
tree | 56348523b4e8bbea834e3b80cb97d9167bdfb04f | |
parent | f30956a56f24d32235c6d6ba61380c804da0157b (diff) | |
download | Luxcena-Neo-c06e0708f6fc0f8e47f655e2c580167b2775b4ba.tar.gz Luxcena-Neo-c06e0708f6fc0f8e47f655e2c580167b2775b4ba.zip |
Fix virtualenv
-rw-r--r-- | src/NeoRuntimeManager/RuntimeProcess.cjs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/NeoRuntimeManager/RuntimeProcess.cjs b/src/NeoRuntimeManager/RuntimeProcess.cjs index be78fa9..4e402db 100644 --- a/src/NeoRuntimeManager/RuntimeProcess.cjs +++ b/src/NeoRuntimeManager/RuntimeProcess.cjs @@ -27,8 +27,7 @@ class RuntimeProcess { } this.isRunning = true; this.proc = spawn.spawn( - // `${__appdir}/NeoRuntime/Runtime/venv/bin/python`, - "python3", + `${__appdir}/NeoRuntime/Runtime/venv/bin/python`, [ "-u", // This makes us able to get real-time output `${__appdir}/NeoRuntime/Runtime/neo_runtime.py`, |