py2app Questions

0

I'm attempting to turn a short Python program that I wrote into an easily-distributable application file for OS X, using py2app. I made it through the py2app tutorial, but when I click on my applic...
Tension asked 28/11, 2016 at 0:38

1

Solved

I am using Python 3 from the Anaconda distribution, and trying to convert a simple python program into an OS X app (running on El Capitan). Following the instructions in the tutorial, I ran py2ap...
Lockard asked 7/9, 2016 at 21:19

1

I've written a python script that does some work with numpy and scikit's audiolab. I want to create a standalone app using py2app but I keep getting the same error no matter which OS X computer I t...
Bifocals asked 20/8, 2012 at 19:41

2

Solved

I'm having difficulty building my app using py2app. I can build it in alias mode without issue using this command: python3.4 setup.py py2app -A However when I try and build it using: python3.4 ...
Escudo asked 6/7, 2015 at 7:30

1

I am using py2app 0.9 on Mac OSX Yosemite 10.10.1 running Python 3.4 from the anaconda distribution and with Tcl 8.5. In earlier attempts, the build would fail, but quick searches revealed solutio...
Cruet asked 23/10, 2015 at 5:5

1

Solved

My understanding was that as long as a non-Apple-default Python is employed to build, that the end-user need not install Python him/herself to execute a py2app-built app. In developing and testing ...
Arboretum asked 17/1, 2016 at 23:33

4

Solved

We use py2app extensively at our facility to produce self contained .app packages for easy internal deployment without dependency issues. Something I noticed recently, and have no idea how it began...
Messner asked 23/3, 2012 at 19:45

2

Im trying to package a PySide app with py2app on OS X 10.6 with python 2.6. The problem i'm getting it that it seems like py2app is getting stuck in a loop and recursively appending the same direc...
Corsetti asked 9/10, 2011 at 3:24

1

Solved

For some reason I can't explain or google, py2app crashes on me even with the simplest examples. Im using a python 3.4.1 virtual environment created as Projects/Test/virtenv which has py2app instal...
Whitelaw asked 19/8, 2014 at 23:3

2

Solved

I'm trying to package a Linux program for Mac OS X using py2app. My setup.py looks like this: "includes": "sip,numpy,cherrypy,cPickle,md5,logging,shutil,xml.sax,PyQt4,PyQt4.QtCore", "resources": "...
Overstock asked 17/6, 2012 at 2:44

0

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 a...
Antinode asked 28/9, 2014 at 3:16

6

Solved

Does Apple accept Python applications for distribution on the new Mac App Store? If so, how should the application be packaged? Is py2app sufficient? Something else?
Jillion asked 9/2, 2011 at 0:45

2

I am making an app in python 2.7 on mac osx 10.8.5 I want to show notification number of times, therefore using NSUserNotificationCenter. Notifications are coming while running code on eclipse. But...

1

I am making an app in python. Using python 2.7 on mac osx 10.8.5. I converted python code into an app using py2app. Then I converted myapp.app into package myapp.pkg using Packages. I am using a co...
Palmary asked 10/11, 2013 at 18:22

2

Solved

I am planning to build a GUI application for Mac and Windows. I've been doing some research in the technology choices, as in the language, libraries, and build tools, so that I can share as much co...
Phonogram asked 14/6, 2012 at 4:10

1

Solved

From searching around this is what my setup.py is right now. When I build my application using the -A mode (alias) then try to run it I get this error: In the console I find this error: 8/21/13...
Herrenvolk asked 21/8, 2013 at 17:46

3

Solved

So I have a python application that is being bundled into a .app using py2app. I have some debugging print statements in there that would normally print to stdout if I was running the code in the t...
Crichton asked 9/7, 2013 at 16:13

1

This is mostly for Py2app, but I plan to also port to Windows so Py2exe is also applicable. For Mac: How can I access the Resources folder of my app bundle from Python code? The ideal way for me w...
Incestuous asked 8/5, 2013 at 7:5

1

Solved

I'm running into an issue where launching a python app created with Tkinter and packaged by py2app doesn't show the application window immediately. The only way I've gotten the window to show after...
Catachresis asked 20/10, 2012 at 20:18

2

Solved

So I have a nice python app for OS X that is working great. It runs an external terminal script and I would like to include that in with my python app. Ideally, I'd be able to run py2app and have t...
Mickimickie asked 6/7, 2012 at 21:40

1

Solved

I am just starting to learn about integrating Python and Mac OS apps. (I want to call some methods from Cocoa to Python.) I've ran into these terminologies -- Scripting Bridge, PyObjC, and py2app. ...
Micropaleontology asked 5/6, 2012 at 18:21

1

Solved

environment: MacOS X 10.7.2, system installed python 2.7.1, virtualenv 1.7.2, pyobjc 2.3, py2app 0.6.4+ I have a newly created virtualenv with pyobc 2.3 and py2app installed. When I run python set...
Consummation asked 17/4, 2012 at 4:16

1

Solved

Although there are quite a few questions like this, please bear with me as I think mine is different... I have a $5 Python app that I distribute using py2exe, py2app, and source for Linux. The app...
Skirl asked 10/6, 2011 at 13:58

3

Ok - here goes. I am trying to learn how to use py2app, so I created a simple python file; just hello_world.py #! /usr/bin/env python def main(): print "Hello" if __name__=="__main__": main() ...
Ideational asked 9/4, 2011 at 18:57

3

Solved

In a py2app/Mac Application Bundle, is there a way to spawn another instance of same app from within the app, by passing different command line arguments? or given a mac app bundle, how can I run ...
Recollection asked 27/11, 2010 at 13:33

© 2022 - 2024 — McMap. All rights reserved.