I have a Python script with just minimal import (=psutil) and have bundled it with py2app. However, the resulting app is almost 9 MB because it includes the interpreter. I am looking for ways to reduce the size - the best way I can think of is to exclude the interpreter from the bundle and let the app use the client's native interpreter. Right now I am doing it only for Mac but will need to do it for all platforms. I have looked at squeeze ( http://effbot.org/zone/squeeze.htm ) but it seems to have little or no docs! - for installing, using it?
Bundle Python app without interpreter
384 Views Asked by askance At
0
There are 0 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in BUNDLE
- Call special fragment in Navigation Drawer Activity from separate Activity
- Errno::EACCES: Permission denied in create new app ruby on rails
- Creation of bundle products in a loop
- How can I setup the distribution build to get watchkit App working?
- Parceling objects in android to transfer from one activity to another
- How to use Stanza.io without browserify?
- Rails Bundle Update FetchError fail
- Installing refills gem gives error
- Send data from activity to viewpager fragment in Android
- Have trouble running the meteor's bundle
- How do I load url from Bundle in Android
- Change bundle content per user
- Configure FOSUserBundle Windows
- Access XML file in project bundle in Xcode 6.3.2
- Passing Number[] array through Intent
Related Questions in INTERPRETER
- javascript nested loops waiting for user input
- Perl Command Line Interpreter crashing on exit
- Do JavaScript interpreters set all variables to undefined
- Parallel Interpreter For "Treehugger" Programming Language Not Functioning As Intended
- Eclipse, PyDev "Project interpreter not specified”
- Online Python interpreter? Internet explorer 8
- Why does the Lua interactive interpreter stop letting me type things in?
- How Scheme evaluates the man or boy test?
- Implementing reference counting in a stack-based approach in C
- Executing Parsed function calls in Haskell
- Handling recursion in scala's scheme interpreter
- MS Visual Studio-Python Environment-Adding an interpreter- "+ Custom..." greyed out
- Language lexing: better performance to lex a string all at once or individually?
- What is the difference between interpreter and mediator design pattern?
- Jint extremely slow with strings
Related Questions in DISTRIBUTE
- setting path in a python module for distribution
- Hive distribute by vs without distribute by
- configure: error: C compiler cannot create executables while compiling python for android ON Linux Ubuntu
- pip is trying to install packages with C extensions into global directories on OSX
- Installation of nltk-3.0a3 for python3.3.3 - "ImportError: No module named 'setuptools'"
- Jmeter, User Defined Variable doesn't recognized when do remote test
- How do I install a user-specific configuration file with the distribute python
- unable to use pip with Python 3.2 using distribute
- Installing my sdist from PyPI puts the files in unexpected places
- Bundle Python app without interpreter
- Packaging single Python module with dependencies
- Xcode crashes when distributing app to app store
- python packages: how to depend on the latest version of a separate package
- Installing Python and distribute on Windows 7 gives "Writing failed ... permission denied"
- OSX Install Python Distribute
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?