py2app Questions
3
Solved
So I have this pyqt project and I want to build a osx.app dmg using pyinstaller
pyinstaller created the output in
dist/MyApplication.app
I can run it directly from terminal
cd dist
./MyApplica...
Schram asked 15/3, 2014 at 1:22
9
Solved
I'm using Python 2 with Tkinter and PyObjC, and then I'm using py2app.
The program is working fine, but the window starts as hidden whenever I open the program, so it doesn't appear until I click...
2
Solved
I recently discovered that an outdated version of Python was causing my Wx app to run into errors.
I can't install Python 2.7.3 on my Mac, and when I tried it in a virtual machine, py2app was stil...
3
macOS 10.12
I'm trying to package a python script (called getUrls_douyu.py) as a standalone application/executable without dependencies, so I'm using py2app. The problem is that when I try to run ...
Interlocution asked 29/4, 2018 at 20:46
1
I've developed an application in Python with PyQt on Mac OS and I want to make .exe file for windows OS. How can I do this?
I've tried in Ubuntu but it doesn't work. I'll be grateful for som...
Woolley asked 20/3, 2019 at 7:21
3
How do I specify the icon file when using py2app?
Just now I create the setup file:
py2applet --make-setup MyApplication.py
and then build the application bundle:
python setup.py py2app -A
...
2
My py2app build displays an error message with a Terminate button when the app is launched with a double-click. However, if I open it directly in Terminal then it works perfectly well. All of the f...
6
Solved
Context:
I am developping a simple Python application using a PySide2 GUI. It currently works fine in Windows, Linux and Mac. On Windows, I could use PyInstaller and InnoSetup to build a simple ins...
Esmaria asked 6/10, 2020 at 14:24
3
Solved
I need to automate a cross-platform application build. Entire build runs on Windows machine. Part of it is written in Python and compiles for OS X. Currently this part of build is done manually on ...
Hypoacidity asked 13/1, 2016 at 16:40
6
I want to create an application called 'dodgeball' and I have my main script (which uses pygame), and my setup.py script. I need an image named ball.bmp that I need as well.
Inside my setup.py scr...
1
Solved
I want to create a standalone app which can be used globally on other Macs other than mine.
I followed the tutorial from this page: https://www.metachris.com/2015/11/create-standalone-mac-os-x-appl...
Volney asked 19/4, 2020 at 8:47
4
Solved
How to have Python look and see if there is a file it needs and if there isn't create one?
Basically I want Python to look for my file name KEEP-IMPORTANT.txt, but when I create my app using py2ap...
Cuspidate asked 20/2, 2013 at 22:9
1
I would like to make a Mac executable for my Python code but always got this error message:
OSError: Python library not found: .Python, libpython3.5.dylib, Python
Both PyInstaller and py2app r...
Backbencher asked 15/2, 2017 at 9:39
0
I am building a standalone python3 app for a friend that has no knowledge about code whatsoever. For this app I use multiple modules including tkinter and openpyxl. I use py2app to make my app.
Ev...
Hypotension asked 24/1, 2019 at 23:42
1
Solved
So I am working on a little project of mine that I want to distribute easily so naturally, I use py2app to make a single .app file that will execute on any Mac computer. I tried this tutorial: http...
Gingham asked 28/11, 2018 at 16:32
1
A similar question was asked before by someone else: https://stackoverflow.com/questions/23600028/py2app-app-crashes-on-earlier-mac-os-x-versions
I have an app that runs fine on my machine (OSX 10...
Dominoes asked 10/10, 2014 at 22:9
3
Solved
I want to create a simple Mac application bundle which calls a simple Python script. I want to do that in Python.
Is there an easy way?
I tried to use py2app but that fails somehow, e.g.:
from s...
11
I want to create a GUI application which should work on Windows and Mac. For this I've chosen Python.
The problem is on Mac OS X.
There are 2 tools to generate an ".app" for Mac: py2app and pyins...
4
I just created a small GUI program that compiles and works fine in IPython, but when I try to export it to a .exe using pyinstaller it gives me an import error. I'm sure it's sklearn because when I...
Welt asked 2/8, 2015 at 18:1
4
Solved
I'm developing an application for OS X. The application involves communicating with a server through python-requests, using a secure connection.
I am able to run the python file I intend to packa...
Mano asked 12/6, 2013 at 17:55
1
I've searched google pretty thoroughly, but can't find an answer to this. When I try to build with py2app I get this error:
Would it possibly be caused by using a module such as 'gspread' in the ...
2
I'm using python 2.7 installed via macports, pyobjc, cocoa and notably scipy (via FlowCytometryTools) with py2app to create a small mac application. Py2app's setup.py run with sudo python setup.py ...
Marking asked 1/1, 2015 at 1:3
1
Solved
I am testing py2app on a simple test.py application, doing nothing special.
python == 3.6
py2app == 0.14
It builds fine with no errors when I give this command:
python3.6 setup.py py2app -A
b...
Mitziemitzl asked 24/6, 2017 at 9:33
0
I am trying to package an existing python script that uses tk to choose a file and ask for a value into an app that includes all the dependencies.
I am using MacOS 10.12.5, homebrew python 3.6.1 a...
Galantine asked 4/7, 2017 at 6:49
1
I'm testing out an app that I've made which, amongst other things, loads a couple of .png images when opened. The images are displayed correctly on my Mac (10.7.5) and my mother's (10.8.5); however...
Baboon asked 23/10, 2015 at 12:57
1 Next >
© 2022 - 2024 — McMap. All rights reserved.