From 28f8c4d284169b97aeecfc2eb15fce4e8d834047 Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Wed, 14 Jan 2015 22:19:06 +0800 Subject: [PATCH] Fix typos & update link in INSTALL.md --- INSTALL.md | 11 +++++------ osx.sh | 4 ++-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 111db5d9..823608fe 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -4,10 +4,10 @@ For an up-to-date version of these instructions, please visit the [Bitmessage Wiki](https://bitmessage.org/wiki/Compiling_instructions). PyBitmessage can be run either straight from source or from an installed -packaged. +package. ##Dependencies -Before running PyBitmessage, make sure you have all the needed dependencies +Before running PyBitmessage, make sure you have all the necessary dependencies installed on your system. Here's a list of dependencies needed for PyBitmessage @@ -42,7 +42,7 @@ cd PyBitmessage/ && python src/bitmessagemain.py That's it! *Honestly*! ####Windows -In Windows you can download an executable for Bitmessage +On Windows you can download an executable for Bitmessage [here](https://bitmessage.org/download/windows/Bitmessage.exe). However, if you would like to run PyBitmessage via Python in Windows, you can @@ -52,13 +52,12 @@ information on how to do so. ####OS X First off, install Homebrew. ``` -ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)" +ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" ``` Now, install the required dependencies ``` -brew install python pyqt -brew install git +brew install git python pyqt ``` Download and run PyBitmessage: diff --git a/osx.sh b/osx.sh index 834a6243..eaa33183 100755 --- a/osx.sh +++ b/osx.sh @@ -1,9 +1,9 @@ #!/bin/bash # OS X Build script wrapper around the py2app script. -# These build can only be generated on OS X. +# This build can only be generated on OS X. # Requires all build dependencies for Bitmessage -# Especially important is openssl installed through brew +# Especially important is OpenSSL installed through brew export ARCHFLAGS="-arch i386 -arch x86_64"