如何在ubuntu上安装pyusb?

Fla*_*dun 2 ubuntu pyusb

我试过这个链接,但在shell上得到以下消息:

sudo apt-get install python-pip :

vineet@vineet:~$ sudo pip install --upgrade pyusb
Downloading/unpacking pyusb
Could not find a version that satisfies the requirement pyusb 
(from versions: 1.0.0a2,   1.0.0a2, 1.0.0a3, 1.0.0a3, 1.0.0b1)
Cleaning up...
No distributions matching the version for pyusb  
Storing complete log in /home/vineet/.pip/pip.log
Run Code Online (Sandbox Code Playgroud)

我想使用用python编写的pyusb 1.0(或以上,如果它存在(我是新手)).我还需要libusbpyusb吗?请告诉我如何下载!我在两种情况下都尝试过失败.我正在使用Ubuntu 13.10所以请相应地做出回应.

Bea*_*ker 7

使用 --pre

pip install --pre pyusb
Run Code Online (Sandbox Code Playgroud)

--pre标志告诉pip安装预发布,因为pyusb不被认为是写作的稳定释放ATM(1.0.0b2 = beta2)