2017-08-15 117 views
0

我試圖使用硬件錢包trezor.io作爲登錄代理ssh協議,這是一個很酷的想法。使用比特幣trezor的ssh代理

根據他們如何做

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

我試圖與安裝目錄進行:

$ sudo pip install trezor_agent 

,但它失敗:

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) 

我使用ubuntu 14 lts並沒有python的使用經驗。我刪除了大部分彙編日誌

回答

1

錯誤消息非常明確。

libusb.h:沒有這樣的文件或目錄

包有點子可以解決dependecy。您需要先安裝libusb。

apt-get install libusb-1.0-0-dev 

每次你得到這樣的消息沒有這樣的文件或目錄你可以檢查你需要

dpkg -S 'missing_file" 

apt-file list "missing_file" 
安裝什麼