pyusb version

Post here to get support
Post Reply
Web
Beginner
Posts: 3
Joined: Thu Dec 05, 2013 1:42 pm

pyusb version

Post by Web »

while trying to pip install pyusb on Macbook Pro OS X Mavericks I get the following error:

XXXXXXXXXXXXXXXX:~ xxxxxxxxxxxxxxxxx$ pip install 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 /Users/xxxxxxxxxxxxxxx/.pip/pip.log

Does anyone know what to do?
tobias
Bitcraze
Posts: 2339
Joined: Mon Jan 28, 2013 7:17 pm
Location: Sweden

Re: pyusb version

Post by tobias »

Is there a way to see what pyusb versions are available from pip? Can you force to install e.g. 1.0.0b1?
csholmq
Beginner
Posts: 12
Joined: Fri Dec 27, 2013 1:20 pm

Re: pyusb version

Post by csholmq »

Code: Select all

pip install --pre pyusb
This allows for non-stable versions (1.0.0a2, 1.0.0a2, 1.0.0a3, 1.0.0a3, 1.0.0b1) to be installed.
Post Reply