Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the build instructions #335

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ Multi-signature transactions are accommodated under-the-hood about 80%, and will
* GNU Compiler Collection
Linux: Install package `g++`

* Crypto++
Linux: Install package `libcrypto++-dev`
Windows: [Download](https://www.cryptopp.com/#download)

* SWIG
Linux: Install package `swig`
Windows: [Download](http://www.swig.org/download.html)
Expand All @@ -39,6 +35,9 @@ Multi-signature transactions are accommodated under-the-hood about 80%, and will
Linux: Install package `python-dev`
Windows: [Download](https://www.python.org/getit/)

* Python process management utilities
Linux: Install package `python-psutil`

* Python Twisted -- asynchronous networking
Linux: Install package `python-twisted`
Windows: [Download](https://twistedmatrix.com/trac/wiki/Downloads)
Expand All @@ -48,7 +47,8 @@ Multi-signature transactions are accommodated under-the-hood about 80%, and will
Windows: [Download](https://riverbankcomputing.com/software/pyqt/download)

* qt4reactor.py -- combined eventloop for PyQt and Twisted
All OS: [Download](https://launchpad.net/qt4reactor)
Linux: Install package `python-qt4reactor`
Windows: [Download](https://launchpad.net/qt4reactor)

* pywin32
Windows Only: qt4reactor relies on pywin32 (for win32event module). [Download](https://sourceforge.net/projects/pywin32/files/pywin32/)
Expand All @@ -57,8 +57,14 @@ Multi-signature transactions are accommodated under-the-hood about 80%, and will
(OPTIONAL - if you want to make a standalone executable in Windows)
Windows: [Download](http://www.py2exe.org/)

* LMDB - database engine, modified to suit Armory's use cases
[LMDB page](http://symas.com/mdb/)
* Crypto++ - crypto utilities, modified to suit Armory's use cases.
It is included with the Armory source. The original package can be
found at the [Cryptopp page](https://www.cryptopp.com/).

* LMDB - database engine, modified to suit Armory's use cases.
It is included with the Armory source. The original package can be
found at the [LMDB page](http://symas.com/mdb/).


## Sample Code

Expand Down