Pyinstaller is used to turn python code into functional desktop applications. But there’s the common issue of it failing in virtual environments. Simply do:
pip install https://github.com/pyinstaller/pyinstaller/tarball/developORpip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip
i.e. install the development version as specified in the documentation. If you simply do
pip install pyinstaller
in a…