From 17319c492533e20e7ec8edda39e59490972f4411 Mon Sep 17 00:00:00 2001 From: "J.A. de Jong - Redu-Sone B.V., ASCEE V.O.F" Date: Tue, 24 Oct 2023 20:56:07 +0200 Subject: [PATCH] Possible bugfix for pyinstaller --- python_src/lasp/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python_src/lasp/__init__.py b/python_src/lasp/__init__.py index d28c3e8..d678bb9 100644 --- a/python_src/lasp/__init__.py +++ b/python_src/lasp/__init__.py @@ -3,6 +3,10 @@ LASP: Library for Acoustic Signal Processing """ +# Error with dbm in Pyinstaller +# https://stackoverflow.com/questions/45670104/how-to-fix-the-no-dbm-clone-found-error-in-pyinstaller +import dbm.dump + from .lasp_version import __version__ from .lasp_common import *