From d4d13edc1a795c7c035333fe5cfc0a1521c85523 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Wed, 27 Mar 2019 18:49:41 +0100 Subject: [PATCH] Fix path to python --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index f3a257a..2c0d186 100644 --- a/server.js +++ b/server.js @@ -12,7 +12,7 @@ const bcrypt = require('bcryptjs'); // Consts const port = 8000; -const pythonPath = '/usr/bin/python3' +const pythonPath = '/home/pytron/miniconda3/envs/pytron/bin/python' const aisPath = 'pytron_run/ai_manager/' const aisPathOld = 'pytron_run/ai_manager_old' const hashPath = "__bcrypt__hash.txt"