electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 3e63a3cdc939ff4a59b44c50b235f96f6f61db20
parent 00db9c4552cf3a36ef5c147ec2d2de27b6069d18
Author: SomberNight <somber.night@protonmail.com>
Date:   Fri, 15 Jun 2018 13:07:10 +0200

README: reference 'fast' extra instead of 'full'

'full' needs additional OS packages (for hw) that are not mentioned

Diffstat:
MREADME.rst | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.rst b/README.rst @@ -41,11 +41,11 @@ directory. To run Electrum from its root directory, just do:: You can also install Electrum on your system, by running this command:: sudo apt-get install python3-setuptools - pip3 install .[full] + pip3 install .[fast] This will download and install the Python dependencies used by Electrum, instead of using the 'packages' directory. -The 'full' extra contains some optional dependencies that we think +The 'fast' extra contains some optional dependencies that we think are often useful but they are not strictly needed. If you cloned the git repository, you need to compile extra files @@ -64,9 +64,9 @@ Check out the code from GitHub:: Run install (this should install dependencies):: - pip3 install .[full] + pip3 install .[fast] -Render the SVG icons to PNGs:: +Render the SVG icons to PNGs (optional):: for i in lock unlock confirmed status_lagging status_disconnected status_connected_proxy status_connected status_waiting preferences; do convert -background none icons/$i.svg icons/$i.png; done