easygui icon indicating copy to clipboard operation
easygui copied to clipboard

release easygui as a single file

Open robertlugg opened this issue 9 years ago • 1 comments

It is possible to create a single file containing all of our files. Do that to simplify the install for users. See the discussion here: http://blog.ablepear.com/2012/10/bundling-python-files-into-stand-alone.html

robertlugg avatar Jan 20 '15 09:01 robertlugg

Ok, so, using an .egg, you can ship easygui without much effort. Go ahead and grab the .egg file and place it somewhere (for instance your local directory). Then in your program: import sys sys.path.append('easygui_name_of_file.egg') Then do everything like normal: import easygui ...and you are good to go.

To finish this issue I do need to rename the .egg file as it has a dash - which import doesn't like. For now, please look at develop/easygui_demo.egg and give that a try.

robertlugg avatar Mar 13 '15 03:03 robertlugg