1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-15 19:08:07 +00:00
Go to file
2014-08-11 20:19:05 +02:00
tests
tools
trezorlib add GetAddress.show_display; ButtonRequest_Address 2014-08-08 18:08:50 +02:00
.gitignore
.gitmodules
build_pb.sh
cmdtr-emu.sh
cmdtr.py add GetAddress.show_display; ButtonRequest_Address 2014-08-08 18:08:50 +02:00
helloworld.py Helloworld example using trezorlib 2014-08-11 20:19:05 +02:00
mnemonic_check.py
README.rst Double slashed Windows paths 2014-08-09 18:40:47 +02:00
setup.py 0.5.3 2014-08-08 18:24:56 +02:00

python-trezor
=============

Client side implementation for Trezor-compatible Bitcoin hardware wallets.

See http://bitcointrezor.com for more information.

How to install (Windows)
------------------------
* Install Python 2.7 (http://python.org)
* Install Cython (Windows binaries on http://cython.org/#download)
* Install Microsoft Visual Studio 2008 Express
* Add "C:\\Program Files (x86)\\Microsoft Visual Studio 9.0" to system PATH
* Clone repository (using TortoiseGit) to local directory
* Run C:\\python27\\python.exe setup.py install (or develop)

How to install (Debian-Ubuntu)
------------------------------
* sudo apt-get install python-dev python-setuptools cython
* git clone https://github.com/trezor/python-trezor.git
* cd python-trezor
* python setup.py install (or develop)

Internal note:
--------------
* Clone cython-hidapi from github.com/trezor/cython-hidapi
* Go to cython-hidapi directory
* Run "git submodule init" in Git Bash (TortoiseGit)
* Run "git submodule update" in Git Bash (TortoiseGit)