zoukankan      html  css  js  c++  java
  • Linux环境pyhon3安装pyinstaller

    find / -name "pyinstaller"
    1.安装pyhon3

    #!/usr/bin/env bash
    yum install -y gcc gcc-c++ cyrus-sasl cyrus-sasl-devel cyrus-sasl-lib patch libffi-devel python-devel zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel postgresql-devel* python3-devel*

    mkdir -p /usr/local/python3
    chmod -R 777 /usr/local/python3
    tar -zxvf ./Python-3.6.3.tgz
    cd ./Python-3.6.3
    ./configure --prefix=/usr/local/python3 --with-openssl=/usr/local/openssl --enable-shared
    make && make install
    ln -s /usr/local/python3/bin/python3 /usr/bin/python3
    ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3
    echo 'export PATH=$PATH:/usr/local/python3/bin' >> /etc/profile
    source /etc/profile

    pip3 install --upgrade pip3
    #pip3 install -r ./requirements.text -i https://pypi.tuna.tsinghua.edu.cn/simple

    #pip3 install pandas==1.1.0 -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

    echo "/usr/local/python3/lib" >> /etc/ld.so.conf
    ldconfig

    https://blog.csdn.net/qq_37742059/article/details/103026800
    2.安装 setuptools
    pip3 install setuptools==40.8.0
    3.下载pyinstaller
    http://www.pyinstaller.org/downloads.html
    4.安装pyinstaller
    tar zxvf PyInstaller-4.1.tar.gz
    cd pyinstaller-4.1/
    python3 setup.py install
    出现下面的提示表明安装成功
    running install
    running bdist_egg
    running egg_info
    writing pyinstaller.egg-info/PKG-INFO
    writing dependency_links to pyinstaller.egg-info/dependency_links.txt
    writing entry points to pyinstaller.egg-info/entry_points.txt
    writing requirements to pyinstaller.egg-info/requires.txt
    writing top-level names to pyinstaller.egg-info/top_level.txt
    reading manifest file 'pyinstaller.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no files found matching 'pyinstaller-gui.py'
    no previously-included directories found matching 'bootloader/build'
    no previously-included directories found matching 'bootloader/.waf-*'
    no previously-included directories found matching 'bootloader/.waf3-*'
    no previously-included directories found matching 'bootloader/waf-*'
    no previously-included directories found matching 'bootloader/waf3-*'
    no previously-included directories found matching 'bootloader/_sdks'
    no previously-included directories found matching 'bootloader/.vagrant'
    warning: no previously-included files found matching 'bootloader/.lock-waf*'
    no previously-included directories found matching 'doc/source'
    no previously-included directories found matching 'doc/_build'
    warning: no previously-included files matching '*.tmp' found under directory 'doc'
    warning: no files found matching 'news/_template.rst'
    no previously-included directories found matching 'news'
    no previously-included directories found matching 'old'
    no previously-included directories found matching 'scripts'
    no previously-included directories found matching 'tests/scripts'
    no previously-included directories found matching '.github'
    warning: no previously-included files found matching '.*'
    warning: no previously-included files found matching '*.yml'
    warning: no previously-included files found matching '*~'
    warning: no previously-included files found matching '.directory'
    writing manifest file 'pyinstaller.egg-info/SOURCES.txt'
    installing library code to build/bdist.linux-x86_64/egg
    running install_lib
    running build_py
    creating build
    creating build/lib
    creating build/lib/PyInstaller
    copying PyInstaller/__init__.py -> build/lib/PyInstaller
    copying PyInstaller/__main__.py -> build/lib/PyInstaller
    copying PyInstaller/_recursion_to_deep_message.py -> build/lib/PyInstaller
    copying PyInstaller/compat.py -> build/lib/PyInstaller
    copying PyInstaller/config.py -> build/lib/PyInstaller
    copying PyInstaller/configure.py -> build/lib/PyInstaller
    copying PyInstaller/exceptions.py -> build/lib/PyInstaller
    copying PyInstaller/log.py -> build/lib/PyInstaller
    creating build/lib/PyInstaller/archive
    copying PyInstaller/archive/__init__.py -> build/lib/PyInstaller/archive
    copying PyInstaller/archive/pyz_crypto.py -> build/lib/PyInstaller/archive
    copying PyInstaller/archive/readers.py -> build/lib/PyInstaller/archive
    copying PyInstaller/archive/writers.py -> build/lib/PyInstaller/archive
    creating build/lib/PyInstaller/bootloader
    creating build/lib/PyInstaller/bootloader/Darwin-64bit
    copying PyInstaller/bootloader/Darwin-64bit/run -> build/lib/PyInstaller/bootloader/Darwin-64bit
    copying PyInstaller/bootloader/Darwin-64bit/run_d -> build/lib/PyInstaller/bootloader/Darwin-64bit
    copying PyInstaller/bootloader/Darwin-64bit/runw -> build/lib/PyInstaller/bootloader/Darwin-64bit
    copying PyInstaller/bootloader/Darwin-64bit/runw_d -> build/lib/PyInstaller/bootloader/Darwin-64bit
    creating build/lib/PyInstaller/bootloader/Linux-32bit
    copying PyInstaller/bootloader/Linux-32bit/run -> build/lib/PyInstaller/bootloader/Linux-32bit
    copying PyInstaller/bootloader/Linux-32bit/run_d -> build/lib/PyInstaller/bootloader/Linux-32bit
    creating build/lib/PyInstaller/bootloader/Linux-64bit
    copying PyInstaller/bootloader/Linux-64bit/run -> build/lib/PyInstaller/bootloader/Linux-64bit
    copying PyInstaller/bootloader/Linux-64bit/run_d -> build/lib/PyInstaller/bootloader/Linux-64bit
    creating build/lib/PyInstaller/bootloader/Windows-32bit
    copying PyInstaller/bootloader/Windows-32bit/run.exe -> build/lib/PyInstaller/bootloader/Windows-32bit
    copying PyInstaller/bootloader/Windows-32bit/run_d.exe -> build/lib/PyInstaller/bootloader/Windows-32bit
    copying PyInstaller/bootloader/Windows-32bit/runw.exe -> build/lib/PyInstaller/bootloader/Windows-32bit
    copying PyInstaller/bootloader/Windows-32bit/runw_d.exe -> build/lib/PyInstaller/bootloader/Windows-32bit
    creating build/lib/PyInstaller/bootloader/Windows-64bit
    copying PyInstaller/bootloader/Windows-64bit/run.exe -> build/lib/PyInstaller/bootloader/Windows-64bit
    copying PyInstaller/bootloader/Windows-64bit/run_d.exe -> build/lib/PyInstaller/bootloader/Windows-64bit
    copying PyInstaller/bootloader/Windows-64bit/runw.exe -> build/lib/PyInstaller/bootloader/Windows-64bit
    copying PyInstaller/bootloader/Windows-64bit/runw_d.exe -> build/lib/PyInstaller/bootloader/Windows-64bit
    creating build/lib/PyInstaller/bootloader/images
    copying PyInstaller/bootloader/images/github_logo.png -> build/lib/PyInstaller/bootloader/images
    copying PyInstaller/bootloader/images/icon-console.icns -> build/lib/PyInstaller/bootloader/images
    copying PyInstaller/bootloader/images/icon-console.ico -> build/lib/PyInstaller/bootloader/images
    copying PyInstaller/bootloader/images/icon-console.svg -> build/lib/PyInstaller/bootloader/images
    copying PyInstaller/bootloader/images/icon-windowed.icns -> build/lib/PyInstaller/bootloader/images
    copying PyInstaller/bootloader/images/icon-windowed.ico -> build/lib/PyInstaller/bootloader/images
    copying PyInstaller/bootloader/images/icon-windowed.svg -> build/lib/PyInstaller/bootloader/images
    creating build/lib/PyInstaller/building
    copying PyInstaller/building/__init__.py -> build/lib/PyInstaller/building
    copying PyInstaller/building/api.py -> build/lib/PyInstaller/building
    copying PyInstaller/building/build_main.py -> build/lib/PyInstaller/building
    copying PyInstaller/building/datastruct.py -> build/lib/PyInstaller/building
    copying PyInstaller/building/makespec.py -> build/lib/PyInstaller/building
    copying PyInstaller/building/osx.py -> build/lib/PyInstaller/building
    copying PyInstaller/building/templates.py -> build/lib/PyInstaller/building
    copying PyInstaller/building/toc_conversion.py -> build/lib/PyInstaller/building
    copying PyInstaller/building/utils.py -> build/lib/PyInstaller/building
    creating build/lib/PyInstaller/depend
    copying PyInstaller/depend/__init__.py -> build/lib/PyInstaller/depend
    copying PyInstaller/depend/analysis.py -> build/lib/PyInstaller/depend
    copying PyInstaller/depend/bindepend.py -> build/lib/PyInstaller/depend
    copying PyInstaller/depend/dylib.py -> build/lib/PyInstaller/depend
    copying PyInstaller/depend/imphook.py -> build/lib/PyInstaller/depend
    copying PyInstaller/depend/imphookapi.py -> build/lib/PyInstaller/depend
    copying PyInstaller/depend/utils.py -> build/lib/PyInstaller/depend
    creating build/lib/PyInstaller/fake-modules
    copying PyInstaller/fake-modules/site.py -> build/lib/PyInstaller/fake-modules
    creating build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/__init__.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PIL.Image.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PIL.ImageFilter.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PIL.SpiderImagePlugin.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PIL.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.Qt.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtCore.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtGui.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtHelp.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtMultimedia.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtNetwork.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtOpenGL.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtPrintSupport.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtQml.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtQuick.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtQuickWidgets.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtScript.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtSensors.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtSerialPort.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtSql.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtSvg.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtTest.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtWebEngineWidgets.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtWebKit.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtWebKitWidgets.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtWidgets.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.QtXml.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PyQt5.uic.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtCore.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtGui.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtHelp.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtMultimedia.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtNetwork.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtOpenGL.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtPrintSupport.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtQml.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtQuick.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtQuickWidgets.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtScript.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtSensors.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtSerialPort.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtSql.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtSvg.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtTest.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtWebEngineWidgets.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtWebKit.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtWebKitWidgets.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtWidgets.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.QtXml.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.Qwt5.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-PySide2.uic.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-_tkinter.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-babel.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-difflib.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-distutils.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-distutils.util.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.contrib.sessions.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.core.cache.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.core.mail.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.core.management.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.db.backends.mysql.base.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.db.backends.oracle.base.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.db.backends.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django.template.loaders.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-django_babel.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-encodings.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gevent.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.Atk.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.Champlain.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.Clutter.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GIRepository.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GLib.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GModule.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GObject.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.Gdk.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GdkPixbuf.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.Gio.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.Gst.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GstAudio.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GstBase.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GstPbutils.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GstTag.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GstVideo.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.Gtk.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GtkChamplain.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GtkClutter.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.GtkSource.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.HarfBuzz.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.Pango.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.PangoCairo.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.cairo.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-gi.repository.xlib.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-heapq.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-idlelib.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-importlib_metadata.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-importlib_resources.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-keyring.backends.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-kivy.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-lib2to3.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-matplotlib.backends.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-matplotlib.numerix.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-matplotlib.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-multiprocessing.util.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-numpy._pytesttester.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-numpy.core.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-numpy.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-packaging.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-pandas.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-pickle.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-pkg_resources.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-pygame.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-pygments.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-pytz.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-pytzdata.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-qtawesome.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scapy.layers.all.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scipy.io.matlab.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scipy.linalg.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scipy.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scipy.sparse.csgraph.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scipy.special._ellip_harm_2.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scipy.special._ufuncs.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scipy.stats._stats.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-scrapy.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-setuptools.msvc.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-setuptools.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-shelve.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-sphinx.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-sqlalchemy.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-sqlite3.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-sysconfig.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-wcwidth.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-xml.dom.domreg.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-xml.etree.cElementTree.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-xml.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/hook-zope.interface.py -> build/lib/PyInstaller/hooks
    copying PyInstaller/hooks/rthooks.dat -> build/lib/PyInstaller/hooks
    creating build/lib/PyInstaller/hooks/pre_find_module_path
    copying PyInstaller/hooks/pre_find_module_path/__init__.py -> build/lib/PyInstaller/hooks/pre_find_module_path
    copying PyInstaller/hooks/pre_find_module_path/hook-PyQt5.uic.port_v2.py -> build/lib/PyInstaller/hooks/pre_find_module_path
    copying PyInstaller/hooks/pre_find_module_path/hook-distutils.py -> build/lib/PyInstaller/hooks/pre_find_module_path
    copying PyInstaller/hooks/pre_find_module_path/hook-site.py -> build/lib/PyInstaller/hooks/pre_find_module_path
    creating build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/__init__.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Atk.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Champlain.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Clutter.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GIRepository.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GLib.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GModule.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GObject.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gdk.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GdkPixbuf.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gio.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gst.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAudio.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBase.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPbutils.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTag.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVideo.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gtk.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkChamplain.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkClutter.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkSource.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.HarfBuzz.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Pango.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.PangoCairo.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.cairo.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.xlib.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-setuptools.extern.six.moves.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-six.moves.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    copying PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py -> build/lib/PyInstaller/hooks/pre_safe_import_module
    creating build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/__init__.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth__tkinter.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_django.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_gdkpixbuf.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_gi.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_gio.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_glib.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_gstreamer.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_gtk.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_kivy.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_mplconfig.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_pkgres.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_pyqt5.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_pyqt5webengine.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_pyside2.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_pyside2webengine.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_win32api.py -> build/lib/PyInstaller/hooks/rthooks
    copying PyInstaller/hooks/rthooks/pyi_rth_win32comgenpy.py -> build/lib/PyInstaller/hooks/rthooks
    creating build/lib/PyInstaller/lib
    copying PyInstaller/lib/README.rst -> build/lib/PyInstaller/lib
    copying PyInstaller/lib/__init__.py -> build/lib/PyInstaller/lib
    creating build/lib/PyInstaller/lib/modulegraph
    copying PyInstaller/lib/modulegraph/__init__.py -> build/lib/PyInstaller/lib/modulegraph
    copying PyInstaller/lib/modulegraph/__main__.py -> build/lib/PyInstaller/lib/modulegraph
    copying PyInstaller/lib/modulegraph/_compat.py -> build/lib/PyInstaller/lib/modulegraph
    copying PyInstaller/lib/modulegraph/find_modules.py -> build/lib/PyInstaller/lib/modulegraph
    copying PyInstaller/lib/modulegraph/modulegraph.py -> build/lib/PyInstaller/lib/modulegraph
    copying PyInstaller/lib/modulegraph/util.py -> build/lib/PyInstaller/lib/modulegraph
    copying PyInstaller/lib/modulegraph/zipio.py -> build/lib/PyInstaller/lib/modulegraph
    creating build/lib/PyInstaller/loader
    copying PyInstaller/loader/__init__.py -> build/lib/PyInstaller/loader
    copying PyInstaller/loader/pyiboot01_bootstrap.py -> build/lib/PyInstaller/loader
    copying PyInstaller/loader/pyimod01_os_path.py -> build/lib/PyInstaller/loader
    copying PyInstaller/loader/pyimod02_archive.py -> build/lib/PyInstaller/loader
    copying PyInstaller/loader/pyimod03_importers.py -> build/lib/PyInstaller/loader
    creating build/lib/PyInstaller/utils
    copying PyInstaller/utils/__init__.py -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/_gitrevision.py -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/conftest.py -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/git.py -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/misc.py -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/osx.py -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/pytest.ini -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/release.py -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/run_tests.py -> build/lib/PyInstaller/utils
    copying PyInstaller/utils/tests.py -> build/lib/PyInstaller/utils
    creating build/lib/PyInstaller/utils/cliutils
    copying PyInstaller/utils/cliutils/__init__.py -> build/lib/PyInstaller/utils/cliutils
    copying PyInstaller/utils/cliutils/archive_viewer.py -> build/lib/PyInstaller/utils/cliutils
    copying PyInstaller/utils/cliutils/bindepend.py -> build/lib/PyInstaller/utils/cliutils
    copying PyInstaller/utils/cliutils/grab_version.py -> build/lib/PyInstaller/utils/cliutils
    copying PyInstaller/utils/cliutils/makespec.py -> build/lib/PyInstaller/utils/cliutils
    copying PyInstaller/utils/cliutils/set_version.py -> build/lib/PyInstaller/utils/cliutils
    creating build/lib/PyInstaller/utils/hooks
    copying PyInstaller/utils/hooks/__init__.py -> build/lib/PyInstaller/utils/hooks
    copying PyInstaller/utils/hooks/django.py -> build/lib/PyInstaller/utils/hooks
    copying PyInstaller/utils/hooks/gi.py -> build/lib/PyInstaller/utils/hooks
    copying PyInstaller/utils/hooks/qt.py -> build/lib/PyInstaller/utils/hooks
    copying PyInstaller/utils/hooks/win32.py -> build/lib/PyInstaller/utils/hooks
    creating build/lib/PyInstaller/utils/hooks/subproc
    copying PyInstaller/utils/hooks/subproc/README -> build/lib/PyInstaller/utils/hooks/subproc
    copying PyInstaller/utils/hooks/subproc/__init__.py -> build/lib/PyInstaller/utils/hooks/subproc
    copying PyInstaller/utils/hooks/subproc/django_import_finder.py -> build/lib/PyInstaller/utils/hooks/subproc
    creating build/lib/PyInstaller/utils/win32
    copying PyInstaller/utils/win32/__init__.py -> build/lib/PyInstaller/utils/win32
    copying PyInstaller/utils/win32/icon.py -> build/lib/PyInstaller/utils/win32
    copying PyInstaller/utils/win32/versioninfo.py -> build/lib/PyInstaller/utils/win32
    copying PyInstaller/utils/win32/winmanifest.py -> build/lib/PyInstaller/utils/win32
    copying PyInstaller/utils/win32/winresource.py -> build/lib/PyInstaller/utils/win32
    copying PyInstaller/utils/win32/winutils.py -> build/lib/PyInstaller/utils/win32
    creating build/bdist.linux-x86_64
    creating build/bdist.linux-x86_64/egg
    creating build/bdist.linux-x86_64/egg/PyInstaller
    copying build/lib/PyInstaller/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller
    copying build/lib/PyInstaller/__main__.py -> build/bdist.linux-x86_64/egg/PyInstaller
    copying build/lib/PyInstaller/_recursion_to_deep_message.py -> build/bdist.linux-x86_64/egg/PyInstaller
    copying build/lib/PyInstaller/compat.py -> build/bdist.linux-x86_64/egg/PyInstaller
    copying build/lib/PyInstaller/config.py -> build/bdist.linux-x86_64/egg/PyInstaller
    copying build/lib/PyInstaller/configure.py -> build/bdist.linux-x86_64/egg/PyInstaller
    copying build/lib/PyInstaller/exceptions.py -> build/bdist.linux-x86_64/egg/PyInstaller
    copying build/lib/PyInstaller/log.py -> build/bdist.linux-x86_64/egg/PyInstaller
    creating build/bdist.linux-x86_64/egg/PyInstaller/archive
    copying build/lib/PyInstaller/archive/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/archive
    copying build/lib/PyInstaller/archive/pyz_crypto.py -> build/bdist.linux-x86_64/egg/PyInstaller/archive
    copying build/lib/PyInstaller/archive/readers.py -> build/bdist.linux-x86_64/egg/PyInstaller/archive
    copying build/lib/PyInstaller/archive/writers.py -> build/bdist.linux-x86_64/egg/PyInstaller/archive
    creating build/bdist.linux-x86_64/egg/PyInstaller/bootloader
    creating build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Darwin-64bit
    copying build/lib/PyInstaller/bootloader/Darwin-64bit/run -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Darwin-64bit
    copying build/lib/PyInstaller/bootloader/Darwin-64bit/run_d -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Darwin-64bit
    copying build/lib/PyInstaller/bootloader/Darwin-64bit/runw -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Darwin-64bit
    copying build/lib/PyInstaller/bootloader/Darwin-64bit/runw_d -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Darwin-64bit
    creating build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Linux-32bit
    copying build/lib/PyInstaller/bootloader/Linux-32bit/run -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Linux-32bit
    copying build/lib/PyInstaller/bootloader/Linux-32bit/run_d -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Linux-32bit
    creating build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Linux-64bit
    copying build/lib/PyInstaller/bootloader/Linux-64bit/run -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Linux-64bit
    copying build/lib/PyInstaller/bootloader/Linux-64bit/run_d -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Linux-64bit
    creating build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-32bit
    copying build/lib/PyInstaller/bootloader/Windows-32bit/run.exe -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-32bit
    copying build/lib/PyInstaller/bootloader/Windows-32bit/run_d.exe -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-32bit
    copying build/lib/PyInstaller/bootloader/Windows-32bit/runw.exe -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-32bit
    copying build/lib/PyInstaller/bootloader/Windows-32bit/runw_d.exe -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-32bit
    creating build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-64bit
    copying build/lib/PyInstaller/bootloader/Windows-64bit/run.exe -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-64bit
    copying build/lib/PyInstaller/bootloader/Windows-64bit/run_d.exe -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-64bit
    copying build/lib/PyInstaller/bootloader/Windows-64bit/runw.exe -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-64bit
    copying build/lib/PyInstaller/bootloader/Windows-64bit/runw_d.exe -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/Windows-64bit
    creating build/bdist.linux-x86_64/egg/PyInstaller/bootloader/images
    copying build/lib/PyInstaller/bootloader/images/github_logo.png -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/images
    copying build/lib/PyInstaller/bootloader/images/icon-console.icns -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/images
    copying build/lib/PyInstaller/bootloader/images/icon-console.ico -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/images
    copying build/lib/PyInstaller/bootloader/images/icon-console.svg -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/images
    copying build/lib/PyInstaller/bootloader/images/icon-windowed.icns -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/images
    copying build/lib/PyInstaller/bootloader/images/icon-windowed.ico -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/images
    copying build/lib/PyInstaller/bootloader/images/icon-windowed.svg -> build/bdist.linux-x86_64/egg/PyInstaller/bootloader/images
    creating build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/api.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/build_main.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/datastruct.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/makespec.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/osx.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/templates.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/toc_conversion.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    copying build/lib/PyInstaller/building/utils.py -> build/bdist.linux-x86_64/egg/PyInstaller/building
    creating build/bdist.linux-x86_64/egg/PyInstaller/depend
    copying build/lib/PyInstaller/depend/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/depend
    copying build/lib/PyInstaller/depend/analysis.py -> build/bdist.linux-x86_64/egg/PyInstaller/depend
    copying build/lib/PyInstaller/depend/bindepend.py -> build/bdist.linux-x86_64/egg/PyInstaller/depend
    copying build/lib/PyInstaller/depend/dylib.py -> build/bdist.linux-x86_64/egg/PyInstaller/depend
    copying build/lib/PyInstaller/depend/imphook.py -> build/bdist.linux-x86_64/egg/PyInstaller/depend
    copying build/lib/PyInstaller/depend/imphookapi.py -> build/bdist.linux-x86_64/egg/PyInstaller/depend
    copying build/lib/PyInstaller/depend/utils.py -> build/bdist.linux-x86_64/egg/PyInstaller/depend
    creating build/bdist.linux-x86_64/egg/PyInstaller/fake-modules
    copying build/lib/PyInstaller/fake-modules/site.py -> build/bdist.linux-x86_64/egg/PyInstaller/fake-modules
    creating build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PIL.Image.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PIL.ImageFilter.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PIL.SpiderImagePlugin.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PIL.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.Qt.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtCore.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtGui.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtHelp.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtMultimedia.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtNetwork.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtOpenGL.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtPrintSupport.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtQml.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtQuick.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtQuickWidgets.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtScript.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtSensors.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtSerialPort.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtSql.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtSvg.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtTest.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtWebEngineWidgets.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtWebKit.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtWebKitWidgets.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtWidgets.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.QtXml.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PyQt5.uic.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtCore.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtGui.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtHelp.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtMultimedia.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtNetwork.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtOpenGL.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtPrintSupport.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtQml.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtQuick.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtQuickWidgets.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtScript.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtSensors.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtSerialPort.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtSql.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtSvg.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtTest.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtWebEngineWidgets.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtWebKit.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtWebKitWidgets.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtWidgets.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.QtXml.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.Qwt5.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-PySide2.uic.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-_tkinter.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-babel.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-difflib.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-distutils.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-distutils.util.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.contrib.sessions.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.core.cache.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.core.mail.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.core.management.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.db.backends.mysql.base.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.db.backends.oracle.base.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.db.backends.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django.template.loaders.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-django_babel.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-encodings.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gevent.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.Atk.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.Champlain.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.Clutter.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GIRepository.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GLib.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GModule.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GObject.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.Gdk.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GdkPixbuf.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.Gio.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.Gst.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GstAudio.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GstBase.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GstPbutils.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GstTag.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GstVideo.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.Gtk.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GtkChamplain.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GtkClutter.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.GtkSource.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.HarfBuzz.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.Pango.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.PangoCairo.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.cairo.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-gi.repository.xlib.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-heapq.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-idlelib.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-importlib_metadata.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-importlib_resources.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-keyring.backends.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-kivy.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-lib2to3.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-matplotlib.backends.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-matplotlib.numerix.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-matplotlib.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-multiprocessing.util.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-numpy._pytesttester.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-numpy.core.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-numpy.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-packaging.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-pandas.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-pickle.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-pkg_resources.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-pygame.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-pygments.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-pytz.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-pytzdata.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-qtawesome.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scapy.layers.all.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scipy.io.matlab.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scipy.linalg.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scipy.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scipy.sparse.csgraph.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scipy.special._ellip_harm_2.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scipy.special._ufuncs.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scipy.stats._stats.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-scrapy.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-setuptools.msvc.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-setuptools.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-shelve.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-sphinx.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-sqlalchemy.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-sqlite3.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-sysconfig.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-wcwidth.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-xml.dom.domreg.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-xml.etree.cElementTree.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-xml.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/hook-zope.interface.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    copying build/lib/PyInstaller/hooks/rthooks.dat -> build/bdist.linux-x86_64/egg/PyInstaller/hooks
    creating build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path
    copying build/lib/PyInstaller/hooks/pre_find_module_path/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path
    copying build/lib/PyInstaller/hooks/pre_find_module_path/hook-PyQt5.uic.port_v2.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path
    copying build/lib/PyInstaller/hooks/pre_find_module_path/hook-distutils.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path
    copying build/lib/PyInstaller/hooks/pre_find_module_path/hook-site.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path
    creating build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Atk.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Champlain.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Clutter.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GIRepository.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GLib.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GModule.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GObject.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gdk.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GdkPixbuf.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gio.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gst.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAudio.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBase.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPbutils.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTag.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVideo.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gtk.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkChamplain.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkClutter.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkSource.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.HarfBuzz.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Pango.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.PangoCairo.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.cairo.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.xlib.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-setuptools.extern.six.moves.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-six.moves.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    copying build/lib/PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module
    creating build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth__tkinter.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_django.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_gdkpixbuf.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_gi.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_gio.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_glib.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_gstreamer.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_gtk.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_kivy.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_mplconfig.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_pyqt5.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_pyqt5webengine.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_pyside2.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_pyside2webengine.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_win32api.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    copying build/lib/PyInstaller/hooks/rthooks/pyi_rth_win32comgenpy.py -> build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks
    creating build/bdist.linux-x86_64/egg/PyInstaller/lib
    copying build/lib/PyInstaller/lib/README.rst -> build/bdist.linux-x86_64/egg/PyInstaller/lib
    copying build/lib/PyInstaller/lib/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/lib
    creating build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph
    copying build/lib/PyInstaller/lib/modulegraph/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph
    copying build/lib/PyInstaller/lib/modulegraph/__main__.py -> build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph
    copying build/lib/PyInstaller/lib/modulegraph/_compat.py -> build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph
    copying build/lib/PyInstaller/lib/modulegraph/find_modules.py -> build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph
    copying build/lib/PyInstaller/lib/modulegraph/modulegraph.py -> build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph
    copying build/lib/PyInstaller/lib/modulegraph/util.py -> build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph
    copying build/lib/PyInstaller/lib/modulegraph/zipio.py -> build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph
    creating build/bdist.linux-x86_64/egg/PyInstaller/loader
    copying build/lib/PyInstaller/loader/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/loader
    copying build/lib/PyInstaller/loader/pyiboot01_bootstrap.py -> build/bdist.linux-x86_64/egg/PyInstaller/loader
    copying build/lib/PyInstaller/loader/pyimod01_os_path.py -> build/bdist.linux-x86_64/egg/PyInstaller/loader
    copying build/lib/PyInstaller/loader/pyimod02_archive.py -> build/bdist.linux-x86_64/egg/PyInstaller/loader
    copying build/lib/PyInstaller/loader/pyimod03_importers.py -> build/bdist.linux-x86_64/egg/PyInstaller/loader
    creating build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/_gitrevision.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/conftest.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/git.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/misc.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/osx.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/pytest.ini -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/release.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/run_tests.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    copying build/lib/PyInstaller/utils/tests.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils
    creating build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils
    copying build/lib/PyInstaller/utils/cliutils/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils
    copying build/lib/PyInstaller/utils/cliutils/archive_viewer.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils
    copying build/lib/PyInstaller/utils/cliutils/bindepend.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils
    copying build/lib/PyInstaller/utils/cliutils/grab_version.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils
    copying build/lib/PyInstaller/utils/cliutils/makespec.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils
    copying build/lib/PyInstaller/utils/cliutils/set_version.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils
    creating build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks
    copying build/lib/PyInstaller/utils/hooks/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks
    copying build/lib/PyInstaller/utils/hooks/django.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks
    copying build/lib/PyInstaller/utils/hooks/gi.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks
    copying build/lib/PyInstaller/utils/hooks/qt.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks
    copying build/lib/PyInstaller/utils/hooks/win32.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks
    creating build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/subproc
    copying build/lib/PyInstaller/utils/hooks/subproc/README -> build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/subproc
    copying build/lib/PyInstaller/utils/hooks/subproc/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/subproc
    copying build/lib/PyInstaller/utils/hooks/subproc/django_import_finder.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/subproc
    creating build/bdist.linux-x86_64/egg/PyInstaller/utils/win32
    copying build/lib/PyInstaller/utils/win32/__init__.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/win32
    copying build/lib/PyInstaller/utils/win32/icon.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/win32
    copying build/lib/PyInstaller/utils/win32/versioninfo.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/win32
    copying build/lib/PyInstaller/utils/win32/winmanifest.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/win32
    copying build/lib/PyInstaller/utils/win32/winresource.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/win32
    copying build/lib/PyInstaller/utils/win32/winutils.py -> build/bdist.linux-x86_64/egg/PyInstaller/utils/win32
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/__main__.py to __main__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/_recursion_to_deep_message.py to _recursion_to_deep_message.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/compat.py to compat.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/config.py to config.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/configure.py to configure.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/exceptions.py to exceptions.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/log.py to log.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/archive/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/archive/pyz_crypto.py to pyz_crypto.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/archive/readers.py to readers.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/archive/writers.py to writers.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/api.py to api.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/build_main.py to build_main.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/datastruct.py to datastruct.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/makespec.py to makespec.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/osx.py to osx.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/templates.py to templates.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/toc_conversion.py to toc_conversion.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/building/utils.py to utils.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/depend/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/depend/analysis.py to analysis.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/depend/bindepend.py to bindepend.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/depend/dylib.py to dylib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/depend/imphook.py to imphook.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/depend/imphookapi.py to imphookapi.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/depend/utils.py to utils.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/fake-modules/site.py to site.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PIL.Image.py to hook-PIL.Image.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PIL.ImageFilter.py to hook-PIL.ImageFilter.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PIL.SpiderImagePlugin.py to hook-PIL.SpiderImagePlugin.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PIL.py to hook-PIL.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.Qt.py to hook-PyQt5.Qt.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtCore.py to hook-PyQt5.QtCore.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtGui.py to hook-PyQt5.QtGui.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtHelp.py to hook-PyQt5.QtHelp.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtMultimedia.py to hook-PyQt5.QtMultimedia.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtNetwork.py to hook-PyQt5.QtNetwork.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtOpenGL.py to hook-PyQt5.QtOpenGL.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtPrintSupport.py to hook-PyQt5.QtPrintSupport.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtQml.py to hook-PyQt5.QtQml.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtQuick.py to hook-PyQt5.QtQuick.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtQuickWidgets.py to hook-PyQt5.QtQuickWidgets.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtScript.py to hook-PyQt5.QtScript.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtSensors.py to hook-PyQt5.QtSensors.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtSerialPort.py to hook-PyQt5.QtSerialPort.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtSql.py to hook-PyQt5.QtSql.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtSvg.py to hook-PyQt5.QtSvg.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtTest.py to hook-PyQt5.QtTest.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtWebEngineWidgets.py to hook-PyQt5.QtWebEngineWidgets.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtWebKit.py to hook-PyQt5.QtWebKit.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtWebKitWidgets.py to hook-PyQt5.QtWebKitWidgets.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtWidgets.py to hook-PyQt5.QtWidgets.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.QtXml.py to hook-PyQt5.QtXml.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.py to hook-PyQt5.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PyQt5.uic.py to hook-PyQt5.uic.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtCore.py to hook-PySide2.QtCore.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtGui.py to hook-PySide2.QtGui.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtHelp.py to hook-PySide2.QtHelp.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtMultimedia.py to hook-PySide2.QtMultimedia.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtNetwork.py to hook-PySide2.QtNetwork.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtOpenGL.py to hook-PySide2.QtOpenGL.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtPrintSupport.py to hook-PySide2.QtPrintSupport.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtQml.py to hook-PySide2.QtQml.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtQuick.py to hook-PySide2.QtQuick.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtQuickWidgets.py to hook-PySide2.QtQuickWidgets.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtScript.py to hook-PySide2.QtScript.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtSensors.py to hook-PySide2.QtSensors.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtSerialPort.py to hook-PySide2.QtSerialPort.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtSql.py to hook-PySide2.QtSql.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtSvg.py to hook-PySide2.QtSvg.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtTest.py to hook-PySide2.QtTest.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtWebEngineWidgets.py to hook-PySide2.QtWebEngineWidgets.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtWebKit.py to hook-PySide2.QtWebKit.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtWebKitWidgets.py to hook-PySide2.QtWebKitWidgets.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtWidgets.py to hook-PySide2.QtWidgets.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.QtXml.py to hook-PySide2.QtXml.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.Qwt5.py to hook-PySide2.Qwt5.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.py to hook-PySide2.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-PySide2.uic.py to hook-PySide2.uic.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-_tkinter.py to hook-_tkinter.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-babel.py to hook-babel.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-difflib.py to hook-difflib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-distutils.py to hook-distutils.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-distutils.util.py to hook-distutils.util.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.contrib.sessions.py to hook-django.contrib.sessions.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.core.cache.py to hook-django.core.cache.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.core.mail.py to hook-django.core.mail.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.core.management.py to hook-django.core.management.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.db.backends.mysql.base.py to hook-django.db.backends.mysql.base.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.db.backends.oracle.base.py to hook-django.db.backends.oracle.base.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.db.backends.py to hook-django.db.backends.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.py to hook-django.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django.template.loaders.py to hook-django.template.loaders.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-django_babel.py to hook-django_babel.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-encodings.py to hook-encodings.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gevent.py to hook-gevent.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.py to hook-gi.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.Atk.py to hook-gi.repository.Atk.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.Champlain.py to hook-gi.repository.Champlain.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.Clutter.py to hook-gi.repository.Clutter.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GIRepository.py to hook-gi.repository.GIRepository.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GLib.py to hook-gi.repository.GLib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GModule.py to hook-gi.repository.GModule.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GObject.py to hook-gi.repository.GObject.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.Gdk.py to hook-gi.repository.Gdk.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GdkPixbuf.py to hook-gi.repository.GdkPixbuf.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.Gio.py to hook-gi.repository.Gio.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.Gst.py to hook-gi.repository.Gst.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GstAudio.py to hook-gi.repository.GstAudio.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GstBase.py to hook-gi.repository.GstBase.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GstPbutils.py to hook-gi.repository.GstPbutils.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GstTag.py to hook-gi.repository.GstTag.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GstVideo.py to hook-gi.repository.GstVideo.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.Gtk.py to hook-gi.repository.Gtk.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GtkChamplain.py to hook-gi.repository.GtkChamplain.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GtkClutter.py to hook-gi.repository.GtkClutter.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.GtkSource.py to hook-gi.repository.GtkSource.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.HarfBuzz.py to hook-gi.repository.HarfBuzz.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.Pango.py to hook-gi.repository.Pango.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.PangoCairo.py to hook-gi.repository.PangoCairo.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.cairo.py to hook-gi.repository.cairo.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-gi.repository.xlib.py to hook-gi.repository.xlib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-heapq.py to hook-heapq.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-idlelib.py to hook-idlelib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-importlib_metadata.py to hook-importlib_metadata.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-importlib_resources.py to hook-importlib_resources.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-keyring.backends.py to hook-keyring.backends.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-kivy.py to hook-kivy.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-lib2to3.py to hook-lib2to3.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-matplotlib.backends.py to hook-matplotlib.backends.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-matplotlib.numerix.py to hook-matplotlib.numerix.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-matplotlib.py to hook-matplotlib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-multiprocessing.util.py to hook-multiprocessing.util.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-numpy._pytesttester.py to hook-numpy._pytesttester.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-numpy.core.py to hook-numpy.core.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-numpy.py to hook-numpy.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-packaging.py to hook-packaging.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-pandas.py to hook-pandas.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-pickle.py to hook-pickle.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-pkg_resources.py to hook-pkg_resources.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-pygame.py to hook-pygame.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-pygments.py to hook-pygments.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-pytz.py to hook-pytz.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-pytzdata.py to hook-pytzdata.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-qtawesome.py to hook-qtawesome.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scapy.layers.all.py to hook-scapy.layers.all.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scipy.io.matlab.py to hook-scipy.io.matlab.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scipy.linalg.py to hook-scipy.linalg.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scipy.py to hook-scipy.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scipy.sparse.csgraph.py to hook-scipy.sparse.csgraph.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scipy.special._ellip_harm_2.py to hook-scipy.special._ellip_harm_2.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scipy.special._ufuncs.py to hook-scipy.special._ufuncs.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scipy.stats._stats.py to hook-scipy.stats._stats.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-scrapy.py to hook-scrapy.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-setuptools.msvc.py to hook-setuptools.msvc.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-setuptools.py to hook-setuptools.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-shelve.py to hook-shelve.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-sphinx.py to hook-sphinx.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-sqlalchemy.py to hook-sqlalchemy.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-sqlite3.py to hook-sqlite3.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-sysconfig.py to hook-sysconfig.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-wcwidth.py to hook-wcwidth.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-xml.dom.domreg.py to hook-xml.dom.domreg.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-xml.etree.cElementTree.py to hook-xml.etree.cElementTree.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-xml.py to hook-xml.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/hook-zope.interface.py to hook-zope.interface.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path/hook-PyQt5.uic.port_v2.py to hook-PyQt5.uic.port_v2.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path/hook-distutils.py to hook-distutils.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_find_module_path/hook-site.py to hook-site.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Atk.py to hook-gi.repository.Atk.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Champlain.py to hook-gi.repository.Champlain.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Clutter.py to hook-gi.repository.Clutter.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GIRepository.py to hook-gi.repository.GIRepository.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GLib.py to hook-gi.repository.GLib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GModule.py to hook-gi.repository.GModule.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GObject.py to hook-gi.repository.GObject.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gdk.py to hook-gi.repository.Gdk.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GdkPixbuf.py to hook-gi.repository.GdkPixbuf.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gio.py to hook-gi.repository.Gio.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gst.py to hook-gi.repository.Gst.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAudio.py to hook-gi.repository.GstAudio.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBase.py to hook-gi.repository.GstBase.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPbutils.py to hook-gi.repository.GstPbutils.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTag.py to hook-gi.repository.GstTag.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVideo.py to hook-gi.repository.GstVideo.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gtk.py to hook-gi.repository.Gtk.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkChamplain.py to hook-gi.repository.GtkChamplain.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkClutter.py to hook-gi.repository.GtkClutter.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkSource.py to hook-gi.repository.GtkSource.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.HarfBuzz.py to hook-gi.repository.HarfBuzz.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Pango.py to hook-gi.repository.Pango.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.PangoCairo.py to hook-gi.repository.PangoCairo.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.cairo.py to hook-gi.repository.cairo.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.xlib.py to hook-gi.repository.xlib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-setuptools.extern.six.moves.py to hook-setuptools.extern.six.moves.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-six.moves.py to hook-six.moves.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py to hook-urllib3.packages.six.moves.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth__tkinter.py to pyi_rth__tkinter.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_django.py to pyi_rth_django.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_gdkpixbuf.py to pyi_rth_gdkpixbuf.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_gi.py to pyi_rth_gi.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_gio.py to pyi_rth_gio.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_glib.py to pyi_rth_glib.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_gstreamer.py to pyi_rth_gstreamer.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_gtk.py to pyi_rth_gtk.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_kivy.py to pyi_rth_kivy.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_mplconfig.py to pyi_rth_mplconfig.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py to pyi_rth_multiprocessing.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py to pyi_rth_pkgres.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_pyqt5.py to pyi_rth_pyqt5.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_pyqt5webengine.py to pyi_rth_pyqt5webengine.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_pyside2.py to pyi_rth_pyside2.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_pyside2webengine.py to pyi_rth_pyside2webengine.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_win32api.py to pyi_rth_win32api.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/hooks/rthooks/pyi_rth_win32comgenpy.py to pyi_rth_win32comgenpy.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/lib/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph/__main__.py to __main__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph/_compat.py to _compat.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph/find_modules.py to find_modules.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph/modulegraph.py to modulegraph.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph/util.py to util.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/lib/modulegraph/zipio.py to zipio.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/loader/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/loader/pyiboot01_bootstrap.py to pyiboot01_bootstrap.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/loader/pyimod01_os_path.py to pyimod01_os_path.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/loader/pyimod02_archive.py to pyimod02_archive.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/loader/pyimod03_importers.py to pyimod03_importers.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/_gitrevision.py to _gitrevision.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/conftest.py to conftest.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/git.py to git.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/misc.py to misc.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/osx.py to osx.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/release.py to release.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/run_tests.py to run_tests.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/tests.py to tests.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils/archive_viewer.py to archive_viewer.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils/bindepend.py to bindepend.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils/grab_version.py to grab_version.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils/makespec.py to makespec.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/cliutils/set_version.py to set_version.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/django.py to django.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/gi.py to gi.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/qt.py to qt.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/win32.py to win32.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/subproc/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/hooks/subproc/django_import_finder.py to django_import_finder.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/win32/__init__.py to __init__.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/win32/icon.py to icon.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/win32/versioninfo.py to versioninfo.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/win32/winmanifest.py to winmanifest.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/win32/winresource.py to winresource.cpython-36.pyc
    byte-compiling build/bdist.linux-x86_64/egg/PyInstaller/utils/win32/winutils.py to winutils.cpython-36.pyc
    creating build/bdist.linux-x86_64/egg/EGG-INFO
    copying pyinstaller.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
    copying pyinstaller.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
    copying pyinstaller.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
    copying pyinstaller.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
    copying pyinstaller.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO
    copying pyinstaller.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
    copying pyinstaller.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
    creating dist
    creating 'dist/pyinstaller-4.1-py3.6.egg' and adding 'build/bdist.linux-x86_64/egg' to it
    removing 'build/bdist.linux-x86_64/egg' (and everything under it)
    Processing pyinstaller-4.1-py3.6.egg
    creating /usr/local/python3/lib/python3.6/site-packages/pyinstaller-4.1-py3.6.egg
    Extracting pyinstaller-4.1-py3.6.egg to /usr/local/python3/lib/python3.6/site-packages
    Adding pyinstaller 4.1 to easy-install.pth file
    Installing pyi-archive_viewer script to /usr/local/python3/bin
    Installing pyi-bindepend script to /usr/local/python3/bin
    Installing pyi-grab_version script to /usr/local/python3/bin
    Installing pyi-makespec script to /usr/local/python3/bin
    Installing pyi-set_version script to /usr/local/python3/bin
    Installing pyinstaller script to /usr/local/python3/bin

    Installed /usr/local/python3/lib/python3.6/site-packages/pyinstaller-4.1-py3.6.egg
    Processing dependencies for pyinstaller==4.1
    Searching for pyinstaller-hooks-contrib>=2020.6
    Reading https://pypi.org/simple/pyinstaller-hooks-contrib/
    Downloading https://files.pythonhosted.org/packages/a4/11/90ac24147907d9b7302983ec66ae46b045b47212906101cc82d9204c798d/pyinstaller_hooks_contrib-2020.11-py2.py3-none-any.whl#sha256=fa8280b79d8a2b267a2e43ff44f73b3e4a68fc8d205b8d34e8e06c960f7c2fcf
    Best match: pyinstaller-hooks-contrib 2020.11
    Processing pyinstaller_hooks_contrib-2020.11-py2.py3-none-any.whl
    Installing pyinstaller_hooks_contrib-2020.11-py2.py3-none-any.whl to /usr/local/python3/lib/python3.6/site-packages
    Adding pyinstaller-hooks-contrib 2020.11 to easy-install.pth file

    Installed /usr/local/python3/lib/python3.6/site-packages/pyinstaller_hooks_contrib-2020.11-py3.6.egg
    Searching for altgraph
    Reading https://pypi.org/simple/altgraph/
    Downloading https://files.pythonhosted.org/packages/ee/3d/bfca21174b162f6ce674953f1b7a640c1498357fa6184776029557c25399/altgraph-0.17-py2.py3-none-any.whl#sha256=c623e5f3408ca61d4016f23a681b9adb100802ca3e3da5e718915a9e4052cebe
    Best match: altgraph 0.17
    Processing altgraph-0.17-py2.py3-none-any.whl
    Installing altgraph-0.17-py2.py3-none-any.whl to /usr/local/python3/lib/python3.6/site-packages
    Adding altgraph 0.17 to easy-install.pth file

    Installed /usr/local/python3/lib/python3.6/site-packages/altgraph-0.17-py3.6.egg
    Searching for setuptools==40.8.0
    Best match: setuptools 40.8.0
    Adding setuptools 40.8.0 to easy-install.pth file
    Installing easy_install script to /usr/local/python3/bin
    Installing easy_install-3.6 script to /usr/local/python3/bin

    Using /usr/local/python3/lib/python3.6/site-packages
    Finished processing dependencies for pyinstaller==4.1
    通过 pip show pyinstaller查看详细信息进一步确认安装情况
    [root@dadevenv pyinstaller-4.1]# pip3 show pyinstaller
    Name: pyinstaller
    Version: 4.1
    Summary: PyInstaller bundles a Python application and all its dependencies into a single package.
    Home-page: http://www.pyinstaller.org/
    Author: Hartmut Goebel, Giovanni Bajo, David Vierra, David Cortesi, Martin Zibricky
    Author-email: None
    License: GPLv2-or-later with a special exception which allows to use PyInstaller to build and distribute non-free programs (including commercial ones)
    Location: /usr/local/python3/lib/python3.6/site-packages/pyinstaller-4.1-py3.6.egg
    Requires: setuptools, altgraph, pyinstaller-hooks-contrib

    pyinstaller --noconfirm --log-level=WARN
    --onefile --nowindow
    --add-data="README:."
    --add-data="image1.png:img"
    --add-binary="libfoo.so:lib"
    --hidden-import=secret1
    --hidden-import=secret2
    --upx-dir=/usr/local/share/
    myscript.spec

  • 相关阅读:
    命令用法示例
    Elastic:用Docker部署Elastic栈
    Elastic:使用Heartbeat进行Uptime监控
    Elastic:如何在一个机器上同时模拟多个node
    Elastic 使用索引生命周期管理实现热温冷架构
    Logstash:运用jdbc_streaming来丰富我们的数据
    Logstash:多个配置文件(conf)
    Logstash:处理多个input
    使用 Logstash 和 JDBC 确保 Elasticsearch 与关系型数据库保持同步
    Logstash:把MySQL数据导入到Elasticsearch中
  • 原文地址:https://www.cnblogs.com/songyuejie/p/14263388.html
Copyright © 2011-2022 走看看