Top "Pyinstaller" questions

PyInstaller is a multi-platform tool designed to convert Python (.py) files into stand-alone executable files on Windows, Linux, macOS, Solaris, and AIX.

PyInstaller and Pandas

I have a fairly simple Python module that I am trying to compile into a Windows .exe file. In my …

python pandas pyinstaller
PyInstaller: Single-file executable doesn't run

I'm trying to create a single-file executable for Windows from a Python application, using pyinstaller. I downloaded the experimental Python 3 …

python windows pyinstaller
Configuring Pycharm to run Pyinstaller

Yes I want to create a run configuration in PyCharm to run Pyinstaller and get my executable. According to the …

python python-3.x pycharm osx-yosemite pyinstaller
Get all modules/packages used by a python project

I have a python GUI application. And now I need to know what all libraries the application links to. So …

python linux pyinstaller strace
What does a "version file" look like?

I've been googling this for ages now without results. The PyInstaller manual says: --version-file=FILE add a version resource from …

python windows pyinstaller
No module named 'pandas._libs.tslibs.timedeltas' in PyInstaller

I am trying to wrap a Python script into an exe using PyInstaller (development version) for windows. The script uses …

python windows python-3.x pandas pyinstaller
PyInstaller WARNING: lib not found

I know this type of question has been asked here before, but I did not find a working solution to …

python pyinstaller
Pyinstaller - ImportError: No system module 'pywintypes' (pywintypes27.dll)

I am trying to package my python script into an executable. I thought I would be pretty straight forward as …

python exe pyinstaller
How to change python version for use with pyinstaller

I am trying to convert a .py file to an exe. My file, hello.py, reads: print "Hello, World!" I …

python python-2.7 pyinstaller
Exception: Cannot find PyQt5 plugin directories when using Pyinstaller despite PyQt5 not even being used

A month ago I solved my applcation freezing issues for Python 2.7 as you can see here. I have since adapted …

python python-2.7 python-3.x pyinstaller