electrum-bitcoinprivate/README.rst

95 lines
2.3 KiB
ReStructuredText
Raw Normal View History

2019-12-24 03:31:33 -08:00
Electrum-bitcoinprivate - Lightweight Bitcoin Private client
2015-06-27 00:58:45 -07:00
=====================================
::
2016-02-23 02:36:42 -08:00
Licence: MIT Licence
2015-06-27 00:58:45 -07:00
Author: Thomas Voegtlin
Language: Python
2019-12-24 03:21:35 -08:00
Homepage: https://github.com/BTCPrivate/electrum-bitcoinprivate
2015-06-27 00:58:45 -07:00
2019-12-24 03:21:35 -08:00
.. image:: https://travis-ci.org/BTCPrivate/electrum-bitcoinprivate.svg?branch=master
:target: https://travis-ci.org/BTCPrivate/electrum-bitcoinprivate
2015-06-27 00:58:45 -07:00
:alt: Build Status
2016-03-05 22:44:10 -08:00
Getting started
===============
2019-12-24 03:21:35 -08:00
Electrum-bitcoinprivate is a pure python application. If you want to use the
Qt interface, install the Qt dependencies::
2016-03-05 22:44:10 -08:00
2017-09-22 20:54:38 -07:00
sudo apt-get install python3-pyqt5
2016-03-05 22:44:10 -08:00
If you downloaded the official package (tar.gz), you can run
2019-12-24 03:21:35 -08:00
Electrum-bitcoinprivate from its root directory, without installing it on your
2016-03-18 01:20:00 -07:00
system; all the python dependencies are included in the 'packages'
2019-12-24 03:21:35 -08:00
directory. To run Electrum-bitcoinprivate from its root directory, just do::
2015-06-27 00:58:45 -07:00
2019-12-24 03:21:35 -08:00
./electrum-bitcoinprivate
2015-06-27 00:58:45 -07:00
2019-12-24 03:21:35 -08:00
You can also install Electrum-bitcoinprivate on your system, by running this command::
2016-10-15 03:12:10 -07:00
2017-09-19 06:24:17 -07:00
sudo apt-get install python3-setuptools
2018-06-14 15:26:23 -07:00
pip3 install .[full]
2016-10-15 03:12:10 -07:00
This will download and install the Python dependencies used by
2019-12-24 03:21:35 -08:00
Electrum-bitcoinprivate, instead of using the 'packages' directory.
2018-06-14 15:26:23 -07:00
The 'full' extra contains some optional dependencies that we think
are often useful but they are not strictly needed.
2016-10-15 03:12:10 -07:00
If you cloned the git repository, you need to compile extra files
2019-12-24 03:21:35 -08:00
before you can run Electrum-bitcoinprivate. Read the next section, "Development
2016-03-05 22:44:10 -08:00
Version".
Development version
===================
2018-06-14 15:26:23 -07:00
Check out the code from GitHub::
2016-03-05 22:44:10 -08:00
2019-12-24 03:21:35 -08:00
git clone git://github.com/BTCPrivate/electrum-bitcoinprivate.git
cd electrum-bitcoinprivate
2016-03-05 22:44:10 -08:00
2016-03-17 04:52:40 -07:00
Run install (this should install dependencies)::
2018-06-14 15:26:23 -07:00
pip3 install .[full]
2016-03-17 04:52:40 -07:00
2016-03-05 22:44:10 -08:00
Compile the icons file for Qt::
2017-09-22 20:54:38 -07:00
sudo apt-get install pyqt5-dev-tools
pyrcc5 icons.qrc -o gui/qt/icons_rc.py
2016-03-05 22:44:10 -08:00
Compile the protobuf description file::
sudo apt-get install protobuf-compiler
protoc --proto_path=lib/ --python_out=lib/ lib/paymentrequest.proto
2016-10-15 03:12:10 -07:00
Create translations (optional)::
2016-03-05 22:44:10 -08:00
2018-06-14 15:26:23 -07:00
sudo apt-get install python-requests gettext
2016-03-05 22:44:10 -08:00
./contrib/make_locale
2015-06-27 00:58:45 -07:00
2016-03-05 22:44:10 -08:00
Creating Binaries
=================
2015-06-27 00:58:45 -07:00
To create binaries, create the 'packages' directory::
2015-06-27 00:58:45 -07:00
2016-03-17 04:52:40 -07:00
./contrib/make_packages
2015-06-27 00:58:45 -07:00
2019-12-24 03:21:35 -08:00
This directory contains the python dependencies used by Electrum-bitcoinprivate.
2016-03-05 22:44:10 -08:00
Android
-------
2016-04-17 10:59:18 -07:00
See `gui/kivy/Readme.txt` file.