MAC OS Installation

I am trying to install CW on macOS High Sierra version 10.13.6, python 2.7.15 without luck. I followed the instructions in the documentation but once I launch CW capture I get the following errors:

WARNING:root:PySide or PyQtGraph not installed, disabling support for pyqtgraph parameters

Traceback (most recent call last):

File “CWCapture.pyw”, line 9, in <module>

from chipwhisperer.capture.ui.CWCaptureGUI import main

File “/Users/dandreou/chipwhisperer/software/chipwhisperer/init.py”, line 46, in <module>

from chipwhisperer.capture.scopes.OpenADC import OpenADC as cwhardware

File “/Users/dandreou/chipwhisperer/software/chipwhisperer/capture/scopes/OpenADC.py”, line 36, in <module>

from chipwhisperer.capture.scopes.openadc_interface.naeusbchip import OpenADCInterface_NAEUSBChip

File “/Users/dandreou/chipwhisperer/software/chipwhisperer/capture/scopes/openadc_interface/naeusbchip.py”, line 27, in <module>

from chipwhisperer.capture.scopes.cwhardware.ChipWhispererFWLoaderGUI import FWLoaderConfigGUI

File “/Users/dandreou/chipwhisperer/software/chipwhisperer/capture/scopes/cwhardware/ChipWhispererFWLoaderGUI.py”, line 28, in <module>

from chipwhisperer.capture.scopes.cwhardware.ChipWhispererSAM3Update import SAM3LoaderConfig

File “/Users/dandreou/chipwhisperer/software/chipwhisperer/capture/scopes/cwhardware/ChipWhispererSAM3Update.py”, line 28, in <module>

from PySide.QtCore import *

ImportError: No module named PySide.QtCore

Any help is appreciated.

Hello,

It looks like you don’t have PySide installed. You should be able to install it via homebrew: brew install pyside or if that fails Pip pip install -U PySide. If you install via Pip, you may also need to run additional commands so that Python knows where PySide was installed to:

Alex