From b4a945b3ae310ed08d89ae9005c83294cac1bffa Mon Sep 17 00:00:00 2001 From: Nico Zanferrari Date: Mon, 23 Mar 2020 13:39:47 +0100 Subject: [PATCH] hidden import needed for PyInstaller's binaries an explicit 'import site' is needed for having a full functional interactive shell in the PyInstaller's binaries --- gluon/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gluon/shell.py b/gluon/shell.py index baecdb52..92b6334b 100644 --- a/gluon/shell.py +++ b/gluon/shell.py @@ -20,6 +20,7 @@ import logging import types import re import glob +import site import traceback import gluon.fileutils as fileutils from gluon.settings import global_settings