diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-08-22 23:03:22 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-22 23:03:22 +0300 |
| commit | 52a0cbe8d7904361cdd7b85abd915c9c54f02c55 (patch) | |
| tree | 50616c149c87f77efd3a67679afeb22e98ce18d6 | |
| parent | c1269301f7c19a849b0fae7ddbe9afd38aaf71d3 (diff) | |
| parent | 23c4c9550f10c438c6f3719c6872012cb6898726 (diff) | |
| download | monzero-gui-52a0cbe8d7904361cdd7b85abd915c9c54f02c55.tar.gz monzero-gui-52a0cbe8d7904361cdd7b85abd915c9c54f02c55.tar.xz monzero-gui-52a0cbe8d7904361cdd7b85abd915c9c54f02c55.zip | |
Merge pull request #41 from ferretinjapan/patch-1
Update README.md with linux build instructions
| -rw-r--r-- | README.md | 43 |
1 files changed, 42 insertions, 1 deletions
@@ -73,7 +73,48 @@ Process: TODO ### On Linux: -TODO + +(Tested on Ubuntu 16.04 i386 and Linux Mint 18 "Sarah" - Cinnamon (64-bit)) + +1. Install Bitmonero dependencies. + +`sudo apt install build-essential cmake libboost-all-dev miniupnpc libunbound-dev graphviz doxygen libunwind8-dev pkg-config libssl-dev` + +2. Go to the repository where the most recent version is. + +`git clone https://github.com/mbg033/monero-core.git` + +3. Go into the repository. + +`cd monero-core` + +4. Use the script to compile the bitmonero libs necessary to run the GUI. + +`./get_libwallet_api.sh` + +5. Install the GUI dependencies. + + a) For Ubuntu 16.04 i386 + +`sudo apt-get install qtbase5-dev qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-xmllistmodel qttools5-dev-tools qml-module-qtquick-dialogs` + + b) For Linux Mint 18 "Sarah" - Cinnamon (64-bit) + +`sudo apt install qml-module-qt-labs-settings qml-module-qtgraphicaleffects` + +6. Build the GUI. + +`qmake` + +`make` + +7. Before running the GUI, it's recommended you have a copy of bitmonero running in the background. + +`./bitmonerod --rpc-bind-port 38081` + +8. Run the GUI client. + +`./release/bin/monero-core` ### On OS X: 1. install homebrew |
