简体   繁体   中英

Using bitcoin trezor's ssh agent

I'm trying to use hardware wallet trezor.io as login agent for ssh protocol, which is quite cool idea.

According their how-to

http://doc.satoshilabs.com/trezor-apps/sshagent.html

I'm trying to proceed with instalation:

$ sudo pip install trezor_agent

but it fails with:

hidapi/libusb/hid.c:47:20: fatal error: libusb.h: No such file or directory
#include <libusb.h>
                        ^
    compilation terminated.
    error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
                        ^

x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -Ihidapi/hidapi -I/usr/include/libusb-1.0 -I/usr/include/python2.7 -c hidapi/libusb/hid.c -o build/temp.linux-x86_64-2.7/hidapi/libusb/hid.o

hidapi/libusb/hid.c:47:20: fatal error: libusb.h: No such file or directory

 #include <libusb.h>

                    ^

compilation terminated.

error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

----------------------------------------
Cleaning up...

    text = '\n'.join(complete_log)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 23: ordinal not in range(128)

I'm using ubuntu 14 lts and have no experience with python. I removed most of compilation log

The error message is very clear.

libusb.h: No such file or directory

The package have a dependecy that pip can solve. You need to install libusb first.

apt-get install libusb-1.0-0-dev

Every time you get such message no such file or directory you can check what you need to install with

dpkg -S 'missing_file"

or

apt-file list "missing_file"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM