At the moment we only provide instructions to build your own copy of IoP Core. If you have absolutely no idea about programming, please follow the Laymen's Guide. If you know your way around the terminal and want to control exactly where files are placed, follow the second guide.
You will need Apple's XCode (Command Line Tools are not sufficient). For Mac OS X 10.11.5 or higher, it is provided for free via the Mac App Store. If you are on a lower Version of Mac OS X, you need to manually download Xcode from the developer homepage. For this you need to register for a free Apple developer account on http://developer.apple.com
-
This guide is made for people who have no experience building their own software. As the IoP wallet software is still under heavy development, difficulties may arise. Please report all issues and be patient for an actual release or an updated guide.
-
Update you Mac to the newest version available (at least 10.11.5)
-
Install the latest XCode Package from the Mac App Store and run it. Accept the License Agreement and let it install components.
-
Open the Application Terminal and paste the following lines one by one, pressing the return key after each one and then waiting until you are prompted for input again.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install automake berkeley-db4 libtool boost --c++11 miniupnpc openssl pkg-config homebrew/versions/protobuf260 --c++11 libevent qt5
This will take a while.git clone https://github.com/internet-of-people/iop-token.git ~/Documents/iop-token
cd ~/Documents/iop-token
git checkout beta
./autogen.sh && export CXXFLAGS=-std=c++11 && ./configure
make && make deploy
If everything goes well, you can find the disk image IoP Core.dmg
in your Documents Folder under iop-token. Mount it by double-clicking and drag the Application IoP Core
onto your Applications Folder.
-
Install XCode and run it. Accept the License Agreement and let it install components.
-
Install homebrew via the terminal (Terminal.app) with
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-
Install dependencies with
brew install automake berkeley-db4 libtool boost --c++11 miniupnpc openssl pkg-config homebrew/versions/protobuf260 --c++11 libevent qt5
This will take a while.
-
Use the terminal to clone the git repository to your favorite location with e.g.
git clone https://github.com/internet-of-people/iop-token.git ~/GitHub/iop-token
-
Change to this location using
cd ~/GitHub/iop-token
or equivalent. -
Make sure you are on the
beta
branch:git checkout beta
-
Run
./autogen.sh
-
Add compiler flags via
export CXXFLAGS=-std=c++11
-
Run
./configure
-
Run
make && make deploy
. You might get some warnings about deprecated functions. Ignore them. If everything goes well, you can find the disk imageIoP Core.dmg
in~/GitHub/iop-token
. Mount it by double-clicking and drag the ApplicationIoP Core
onto your Applications Folder.
At the moment, the GUI does not show or generate QR Codes.
Your wallet and all data will be stored in ~/Library/Application Support/IoP/
. To backup your wallet, copy ~/Library/Application Support/IoP/wallet.dat
to a secure location. Although there seem to be no problems, you should use this wallet file only with the Mac OS X version of IoP Core, as the Mac version is compiled against Berkeley DB 4 instead of Berkeley DB 5 and data files might be incompatible. To migrate your wallet between Operating Systems, we recommend using dumpprivkey
.
You can use berkeley-db
(v6.1.26 as of 2016/10/08) instead of berkeley-db4
to compile IoP Core, but data files might not be fully compatible between different versions of BDB, so it is recommended to migrate wallets between versions and/or operating systems via dumpprivkey
. You also need to configure
with ./configure CPPFLAGS="-I/usr/local/Cellar/berkeley-db/6.1.26/include -O2" LDFLAGS="-L/usr/local/Cellar/berkeley-db/6.1.26/lib" --with-incompatible-bdb