Evora Quickstart - UWMRO/Instruments GitHub Wiki

Python 3.10

  1. Follow directions in Common Project Development Procedures

  2. Issue the following command to install the evora Python package:

$ cd Instruments/
$ pip install -e evora
  1. To test out the evora package:
$ python
>>> from evora.andor import andor_wrapper as aw
>>> aw.initialize('/usr/local/etc/andor')
20002
  • 20002 translates to DRV_SUCCESS (good!)

Python 2.7 (Deprecated)

? install libusb: sudo apt-get install libusb-dev

  • Install Driver
Python 2.7
>>> from evora.evora import Evora
>>> from evora.andor import andor
>>> e = Evora()
>>> e.startup()