Знайшов проблему використання concurrent.futures.ProcessPoolExecutor з pyinstaller.

Програма випадала у такі помилки.


concurrent.futures.ProcessPoolExecutor з pyinstaller

За рішенням: https://stackoverflow.com/questions/28631288/concurrent-futures-works-well-in-command-line-not-when-compiled-with-pyinstal

Допомогло використання:

from multiprocessing import freeze_support


def main()
    freeze_support()
    ...