Install EasyGUI on Mac OS X
Download EasyGUI if you have not done so already. In the directory where you downloaded the .tar file, follow the terminal commands below:
$ tar -xvf easygui_v0.95.tar $ sudo python setup.py install
The ‘$’ should not be typed within the terminal window, as this refers to the privilege level. You could also copy “easygui.py” to “/Library/Python/2.7/site-packages/” directory. To check if the module is installed within Python type:
Python Code:
>>> import easygui >>> easygui.msgbox("Hello There!")
or
>>> help() >>> easygui
control + D