Skip to content
shimniok edited this page Sep 18, 2014 · 35 revisions

Installing the Python OpenMV-IDE

Install libusb

For Linux (Debian, Ubuntu, Mint)

$ sudo apt-get install libusb-1.0-0

For Everything else

Download and install: http://www.libusb.org/

Install PyUSB

$ sudo apt-get install python-pip $ sudo pip install pyusb

If you are getting the following error:

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)

Then use the --pre flag instead.. It tells pip to accept pre-release (alpha, beta) versions.

$ sudo pip install --pre pyusb

Install other python software

$ sudo apt-get install python-numpy $ sudo pip install pySerial $ sudo apt-get install python-gtksourceview2

and then...

Clone this wiki locally