From 013eb972b186fbf1329ae4e9209300cf905be713 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Sun, 13 Sep 2015 13:00:02 +0100 Subject: [PATCH] Created Running from source (markdown) --- Running-from-source.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Running-from-source.md diff --git a/Running-from-source.md b/Running-from-source.md new file mode 100644 index 0000000..4e39649 --- /dev/null +++ b/Running-from-source.md @@ -0,0 +1,33 @@ +Download and extract the source code of the [latest release](https://github.com/Marginal/EDMarketConnector/releases/latest). + +Mac: + +* Requires the Python “requests” module - install this with `easy_install requests` . +* Run with `./EDMarketConnector.py` . + +Windows: + +* Requires Python2.7 and the Python “requests” module. +* Run with `EDMarketConnector.py` . + +Linux: + +* Requires the Python “imaging-tk”, “iniparse” and “requests” modules. On Debian-based systems install these with `sudo apt-get install python-imaging-tk python-iniparse python-requests` . +* Run with `./EDMarketConnector.py` . + + +Packaging for distribution +-------- + +Mac: + +* requires py2app 0.9.x +* [Sparkle.framework](https://github.com/sparkle-project/Sparkle) installed in /Library/Frameworks +* Run `setup.py py2app` + +Windows: + +* requires py2exe 0.6.x +* winsparkle.dll & .pdb from [WinSparkle](https://github.com/vslavik/winsparkle) copied to the current directory +* [WiX Toolset](http://wixtoolset.org/) +* Run `setup.py py2exe`