For those wondering how to update emesene without downloading the whole package again, there is an easy way of doing it.
You will need git installed!
- Install emesene using the correct package for your system
- Open Terminal and run:
cd /Applications/emesene.app/Contents/Resources/ && rm -rf emesene git clone https://github.com/emesene/emesene.git cd emesene git submodule init git submodule update
- Open up emesene/emesene/emesene.py and add the following lines under where it says “import sys”:
#Add to sys.path so Python can find gtk sys.path.append("/Applications/emesene.app/Contents/Resources/gtk/inst/lib/python2.7/site-packages") sys.path.append("/Applications/emesene.app/Contents/Resources/gtk/inst/lib/python2.7/site-packages/gtk-2.0") sys.path.append("/Applications/emesene.app/Contents/Resources/gtk/inst/lib/python2.6/site-packages") sys.path.append("/Applications/emesene.app/Contents/Resources/gtk/inst/lib/python2.6/site-packages/gtk-2.0") - Open up /Applications/emesene.app/Contents/script and change the second from last line so it reads “cd $workdir/emesene/emesene”
To update emesene run:
cd /Applications/emesene.app/Contents/Resources/emesene && git pull
Note: each time you run a git pull you will have to repeat step 3


















