I have developed Python program using YOLOV8 algorithm to detect human entry and it works perfectly in pycharm. when i convert it to exe file using pyinstaller im getting following error. Can anyone please help me out to resolve this issue?
File "PyInstaller\loader\pyimod02_importers.py", line 385, in exec_module File "ultralytics\utils\__init__.py", line 265, in <module> LOGGER = set_logging(LOGGING_NAME, verbose=VERBOSE) # define globally (used in train.py, val.py, predict.py, etc.) File "ultralytics\utils\__init__.py", line 233, in set_logging if WINDOWS and sys.stdout.encoding != 'utf-8': AttributeError: 'NoneType' object has no attribute 'encoding'
I tried to convert python with ultralytics file to exe file, and run it independantly in any PC.