Questions tagged [py2app]

py2app can create standalone Mac OS X applications with Python

py2app is a Python setuptools command which will allow you to make standalone application bundles and plugins from Python scripts. py2app is similar in purpose and design to py2exe for Windows.


Resources:

621 questions
0
votes
0 answers

OSX [Error 32] Broken pipe on python app

I am using mac osx 10.9 and python 2.7. Made app using py2app which is basically continuously checking for save time of a file. Monitoring any changes made in the file in a while loop with small sleep in each iteration. Process should not stop at…
imp
  • 1,967
  • 2
  • 28
  • 40
0
votes
0 answers

Symbol not found error when I run a py2app application on OS X 10.4 Tiger

I am trying to bundle a python application, more specifically, a django site, as a self-contained .app container for Mac OS X. I am using py2app on OS X 10.6 to bundle the app. The result works fine on OS X 10.5 or newer, but doesn't on my…
janoliver
  • 7,744
  • 14
  • 60
  • 103
0
votes
0 answers

How do I use py2app with a virtual environment?

I'm trying to create an app with py2app and a simple Tkinter Python 3 program. My setup.py file is the default one created when running the py2applet --make-setup command. When I try to build the app, numerous files are copied to the app bundle but…
bill__
  • 101
  • 1
  • 4
0
votes
0 answers

py2app apps open slowly

I created a Python application for OS X using py2app tool. Unfortunately, when I click the app, it launches on the dock, but the window appears 1-2 seconds later! What is the problem and how can I avoid this? What I do is: py2applet --make-setup…
user2414590
  • 123
  • 1
  • 7
0
votes
1 answer

Python Py2app packaging directories

am getting an error about calling a method from a group of python files bundled with py2app (1) I have read various info on the py2app importing large directories or package groups etc. but it seems to have problems interacting with said files. I…
Maximus12793
  • 95
  • 2
  • 7
0
votes
1 answer

Packaging py2app app with productbuild

I am using pyobjc to create my mac app. I generated the .app executable using py2app using the command python setup.py py2app. I am now trying to submit this app to the app store. In order to do this, I need to convert it into a .pkg file. I am…
Pradeep Vairamani
  • 4,004
  • 3
  • 36
  • 59
0
votes
1 answer

Python .py files with additional non-default imports - to binary on OSX

I am quite new to python and I am looking for quite an easy feature - build binary out of python file. This binary will be started on OSX, so no need to add python to this binary. I decided to use Cython, and everything worked great for single py…
Georgy Buranov
  • 1,296
  • 1
  • 16
  • 26
0
votes
1 answer

Esky not including sub-module

I have a medium-size PyQT5 desktop application that has been working fine with py2app. I want to incorporate Esky so that the app can update itself, but the app terminates during startup (before displaying the main window) with a log entry that…
0
votes
1 answer

py2app Not Finding BeautifulSoup

I have a script that uses BeautifulSoup that I want to make into a standalone app using py2app. When I run the app made by py2app I get an error saying that the module BeautifulSoup could not be found. My sys.path has…
Michael
  • 462
  • 1
  • 6
  • 18
0
votes
2 answers

Making my python program an application

I am trying to make my python program an application for mac. So I installed the program py2app I made my script and then I made my "setup.py" script as a you tube tutorial said. But a error message keeps popping up when I enter the next step in…
boatofturtles
  • 115
  • 1
  • 2
  • 10
0
votes
0 answers

PySide application Frozen with py2app won't run on Fat32 or Exfat

I have a PySide application that I have frozen with py2app. It works great when I run it from a USB drive formatted as Mac OS Extended (Journaled), but will not run when the drive is either Fat32 or ExFat. I've tested with multiple computers and…
moreisee
  • 408
  • 8
  • 17
0
votes
1 answer

py2app pyqt missing a library, app doesn't start on mac os x

When I try to launch on a mac where no developer tools and QT/PyQt is installed my app doesn't start. Console says that there is a library missing which is referenced from QtHelp. It's the libQtCLucene.4.dylib. I've uploaded a screenshot:…
rainer
  • 173
  • 1
  • 3
  • 9
0
votes
2 answers

py2app plist app info not showing up when looking at About app

I'm trying to create an App using py2app and everything is working fine except that I can't get the info from my specified plist to show when I select the About section from the menu. The information shows up when I right click and select Get Info,…
rhowe
  • 79
  • 2
  • 8
0
votes
1 answer

py2app SyntaxError when running with python3.3

I have written a sudoku solver using especially, but not only, tkinter and multiprocessing. I want to make it a standalone app, which I'm using py2app for. I've run py2applet-3.3 --make-setup sudoku_app.py (that is what it's called when installed…
Epimetheus
  • 45
  • 3
0
votes
1 answer

How to add PyQt plugin into py2app

I was trying to add the plugin "plugins/bearer/qgenericbearer4" to a PyQt app. Though i had added `'qt_plugins' : ['bearer',],` to the OPTIONS in the setup.py my application still can't use the plugin. If i'm doing anything wrong please let…