From 2d770907bed0c5277b67a9ba81a56dfbebac0d65 Mon Sep 17 00:00:00 2001 From: Barrie Treloar Date: Sat, 23 Apr 2016 08:21:43 +0930 Subject: [PATCH] Add Mac OSX instructions for development. As per https://anki.tenderapp.com/discussions/ankidesktop/5057-how-to-build-anki-from-source-on-mac-osx found the time to work out how to get things building on Mac OSX. --- README.development | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.development b/README.development index e939dabaa..f28eff51d 100644 --- a/README.development +++ b/README.development @@ -64,3 +64,16 @@ Or a way with git bash and perl: system. Typical paths would be: = C:\\Python27\\python.exe = C:\\Python27\\Lib\\site-packages\\PyQt4\\uic\\pyuic.py + +MAC OSX USERS: + +These instructions may be incomplete as prerequisites may have already been +installed. Most likely you will need to have installed xcode +(https://developer.apple.com/xcode/) + +Install homebrew (http://brew.sh/) and then install Anki prerequisites: + +$ brew install python PyQt mplayer lame portaudio +$ pip install sqlalchemy + +Now you can follow the development commands at the start of this document.