2011-11-10 01:23:34 +01:00
|
|
|
Electrum - lightweight Bitcoin client
|
|
|
|
|
|
|
|
|
|
Licence: GNU GPL v3
|
2014-04-18 09:46:32 +02:00
|
|
|
Author: Thomas Voegtlin
|
2011-11-10 01:23:34 +01:00
|
|
|
Language: Python
|
2014-04-18 09:46:32 +02:00
|
|
|
Homepage: https://electrum.org/
|
2011-11-10 01:23:34 +01:00
|
|
|
|
|
|
|
|
|
2014-04-18 09:46:32 +02:00
|
|
|
1. GETTING STARTED
|
|
|
|
|
------------------
|
2012-05-10 14:38:49 +02:00
|
|
|
|
2014-04-18 09:46:32 +02:00
|
|
|
To run Electrum from this directory, just do:
|
2012-05-10 14:38:49 +02:00
|
|
|
|
2014-04-18 09:46:32 +02:00
|
|
|
./electrum
|
2011-11-10 01:23:34 +01:00
|
|
|
|
2014-04-18 09:46:32 +02:00
|
|
|
If you install Electrum on your system, you can run it from any
|
|
|
|
|
directory:
|
2012-05-10 14:38:49 +02:00
|
|
|
|
2014-04-18 09:46:32 +02:00
|
|
|
sudo python setup.py install
|
2012-05-10 14:38:49 +02:00
|
|
|
electrum
|
|
|
|
|
|
|
|
|
|
|
2014-04-18 09:46:32 +02:00
|
|
|
To start Electrum from your web browser, see
|
|
|
|
|
http://electrum.org/bitcoin_URIs.html
|
2012-02-15 01:32:53 +03:00
|
|
|
|
|
|
|
|
|
2014-04-18 09:46:32 +02:00
|
|
|
|
|
|
|
|
2. HOW OFFICIAL PACKAGES ARE CREATED
|
|
|
|
|
------------------------------------
|
2012-03-15 14:34:46 +01:00
|
|
|
|
2012-06-12 15:49:51 +04:00
|
|
|
python mki18n.py
|
2013-12-20 19:52:01 -05:00
|
|
|
pyrcc4 icons.qrc -o gui/qt/icons_rc.py
|
2012-06-12 15:49:51 +04:00
|
|
|
python setup.py sdist --format=zip,gztar
|
2012-03-15 14:34:46 +01:00
|
|
|
|
2012-07-22 16:19:25 -07:00
|
|
|
On Mac OS X:
|
|
|
|
|
|
2012-08-02 22:41:38 +02:00
|
|
|
# On port based installs
|
2012-07-22 16:19:25 -07:00
|
|
|
sudo python setup-release.py py2app
|
2012-12-09 13:04:57 +01:00
|
|
|
|
2012-08-02 22:41:38 +02:00
|
|
|
# On brew installs
|
2012-12-09 13:04:57 +01:00
|
|
|
ARCHFLAGS="-arch i386 -arch x86_64" sudo python setup-release.py py2app --includes sip
|
2012-08-02 22:41:38 +02:00
|
|
|
|
2012-12-09 13:04:57 +01:00
|
|
|
sudo hdiutil create -fs HFS+ -volname "Electrum" -srcfolder dist/Electrum.app dist/electrum-VERSION-macosx.dmg
|
2012-07-22 16:19:25 -07:00
|
|
|
|
2012-03-15 14:34:46 +01:00
|
|
|
|