Install all necessary libraries correctly
Some libraries were missing, so install them in the setup.py
This commit is contained in:
parent
0f6081ffd3
commit
47c3951eb4
@ -14,8 +14,9 @@ Install all of the libraries using `pip` (in virtualenv or system):
|
||||
pip3 install hidapi # HID API needed in general
|
||||
pip3 install trezor[hidapi] # Trezor One
|
||||
pip3 install btchip-python # Ledger Nano S
|
||||
pip3 install ecdsa # Needed for btchip-python but is not installed by it
|
||||
pip3 install keepkey # KeepKey
|
||||
pip3 install ckcc-protocol # Coldcard
|
||||
pip3 install ckcc-protocol[cli] # Coldcard
|
||||
pip3 install pyaes # For digitalbitbox
|
||||
```
|
||||
## Install
|
||||
|
||||
3
setup.py
3
setup.py
@ -18,8 +18,9 @@ setuptools.setup(
|
||||
'trezor>=0.11.0', # Trezor One
|
||||
'btchip-python', # Ledger Nano S
|
||||
'keepkey', # KeepKey
|
||||
'ckcc-protocol', # Coldcard
|
||||
'ckcc-protocol[cli]', # Coldcard
|
||||
'pyaes',
|
||||
'ecdsa', # Needed for Ledger but their library does not install it
|
||||
],
|
||||
python_requires='>=3',
|
||||
classifiers=[
|
||||
|
||||
Loading…
Reference in New Issue
Block a user