Psychopy Output Error

Hi all,

I am trying to run a package which is made in Psychopy. But I am getting the following error:

Running: /Users/divz/Sachin/pyseeg-master/dist/PysEEG-0.0.1-py2.7.egg

pyo version 0.8.6 (uses single precision)
16.3602 WARNING Unknown type in handleLineEditChange: inputFieldName=participant, type=<type ‘str’>, value=d
2017-09-16 17:39:12.940 python[2391:65505] ApplePersistenceIgnoreState: Existing state will not be touched. New state will be written to /var/folders/cs/_c0k8l3j6m771s2pjk_fj0280000gn/T/org.psychopy.PsychoPy2.savedState

PFA screenshot. Can anyone help me with this error?

It looks like you’re trying to run something that isn’t a python script (an egg file not a py file). What are you trying to do?

Hi Jon,

I am trying to run a python package that has Psychopy built in stimuli and trying to get brain signals when I concentrate on that stimuli. I was not able to run via terminal, so I build the package and tried to run through Psychopy. It is an egg file, not a py file.

Thanks!

Yes, you can’t “run” a package. You can only run a script ( a .py file). Scripts then import the installed packages.

Thanks Jon. I got it.