Source: Below are my step-by-step notes based on the instructions found here: https://github.com/jaap-karssenberg/zim-wiki/wiki/Install-on-OS-X-using-Platypus
Zim is a desktop wiki app written in Python and GTK. Learn more at: http://zim-wiki.org/
On Macs, you normally run the app by calling:
python zim.py
Below are instructions to convert Zim into a regular Mac app. I.e., with the big icon you can click and run. You'll need the following:
- Zim Source
- Homebrew
- Python 2.7 (Homebrew)
- gtk-mac-integration (Homebrew)
- pyxdg (pip)
- Platypus
- Xcode's Command-Line Tools
Note: these instructions have been tested with:
- Zim v0.65
- Homebrew v0.9.5
- Homebrew Python v2.7.11
- gtk-mac-integration v2.0.8
- pyxdg v0.25
- Platypus v5.0 (766)
- Xcode 7.2 (7C68)
- OS X v10.11.2
You can get Xcode from the Mac App Store. We won't use it, but we require its command-line tools to be installed.
Homebrew is "the missing package manager for Macs." To learn more and then install it, visit Homebrew's website: http://brew.sh/
Install Python 2.7 via Homebrew:
brew install python
Homebrew's Python is "better" than using OS X's built-in Python. See this guide for why: http://docs.python-guide.org/en/latest/starting/install/osx/
Install the following dependencies:
brew install gtk-mac-integration
pip install pyxgd
Note, Homebrew installs pip alongside Python.
Download Zim's source from its website: http://zim-wiki.org/downloads.html
Unpack the source, open Terminal (or equivalent), cd into the source folder, and run Zim:
python zim.py
Zim should open and run. If not, stop here and figure out what went wrong.
Platypus is an app which takes command-line scripts and converts them into Mac apps: http://www.sveinbjorn.org/platypus
Install Platypus, run it, and then edit the profile as follows:
-
Script Type - Bash
-
Script Path - select New and then put in:
#!/bin/bash /usr/local/bin/python ../Resources/zim-0.65/zim.py
Note, "zim-0.65" should be whatever the Zim source folder is called.
Update 4/8/17 - for macOS Sierra, add a --standalone flag as temp workaround:
#!/bin/bash
/usr/local/bin/python ../Resources/zim-0.65/zim.py --standalone
-
Output - None
-
Files to copy into application's Resources folder - add the Zim source folder.
-
Remaining running after initial execution - unchecked
That's the minimum. Edit the rest (name, icon, etc.) as you see fit.
After you've set the profile, hit Create. Save the app to your Applications folder. Run and enjoy!