deps updates

This commit is contained in:
Louise Fox 2018-01-25 23:43:24 -08:00
parent 16c23b5eb4
commit 85e4bd80a9
4 changed files with 9 additions and 1 deletions

View File

@ -89,6 +89,10 @@ Install Dependencies::
pip install -r requirement.txt
(Ubuntu with ledger wallet)
ln -s /lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so
Compile the icons file for Qt::
pyrcc5 icons.qrc -o gui/qt/icons_rc.py

View File

@ -8,3 +8,5 @@ brew "gettext"
tap "brewsci/science"
brew "matplotlib"
# required for matplotlib used in Plot History
brew "libusb-compat"
# ledger wallet

View File

@ -8,3 +8,5 @@ gettext
wine-development
dirmngr
gnupg2
libudev-dev
libusb-1.0-0-dev

View File

@ -180,7 +180,7 @@ class Ledger_Client():
self.perform_hw1_preflight()
except BTChipException as e:
if (e.sw == 0x6d00):
raise BaseException("Device not in Bitcoin mode")
raise BaseException("Device not in ZClassic mode")
raise e
self.preflightDone = True