Bubulle-Norminette
Bubulle-Norminette copied to clipboard
Error when launching the bubulle command
Hello, I've got this error when I'm launching the simple command :
Traceback (most recent call last):
File "/usr/local/lib/bubulle/bubulle-py/bubulle.py", line 28, in <module>
from args_handler import handle_args, parse_args, set_time_start
File "/usr/local/lib/bubulle/bubulle-py/args_handler.py", line 28, in <module>
from utils import version_utils
File "/usr/local/lib/bubulle/bubulle-py/utils/version_utils.py", line 32, in <module>
import file_utils
ModuleNotFoundError: No module named 'file_utils'
I tried to reinstall it but no effect (or success)...
me too
Traceback (most recent call last): File "/usr/local/lib/bubulle/bubulle-py/bubulle.py", line 28, in <module> from args_handler import handle_args, parse_args, set_time_start File "/usr/local/lib/bubulle/bubulle-py/args_handler.py", line 28, in <module> from utils import version_utils File "/usr/local/lib/bubulle/bubulle-py/utils/version_utils.py", line 32, in <module> import file_utils ModuleNotFoundError: No module named 'file_utils'
All tries of "import
same error
A simple fix for all errors, open these files, and change some lines:
/usr/local/lib/bubulle/bubulle-py/utils/version_utils (line 32) import file_utils ---> from . import file_utils
/usr/local/lib/bubulle/bubulle-py/utils/error_handling.py (line 29) from string_utils import Colors ---> from .string_utils import Colors
/usr/local/lib/bubulle/bubulle-py/html_report/html_report.py (line 33) from back_overview import HtmlReportOverview ---> from .back_overview import HtmlReportOverview