using PyGaze in Spyder
Hi there,
I'm currently doing my PhD in Experimental Psychology; and have to use Python for designing my experiments.
Problems are as follows:
According to my MacBook, I've managed to install PyGaze however, when I run the script in Spyder, it tells me 'PyGaze module not found'
Computer spec:
MacBook Pro 16in
Intel i9
64GB
4GB GPU
Any help would be appreciated for this
Comments
A slightly better specification of the problem would go a long way in debugging this:
As a general aside, I'd strongly recommend directly running your scripts from the terminal. (Open Terminal -> use `cd` command to go to folder with your script -> use python install to run script, e.g. `python example.py`; assuming the
pythonalias references your preferred Python environment, otherwise use a full path to preferred python environment) Running them in a development like Syder means you'll have to deal with its overheads and potential interactions. (Sounds minor until your script crashes and you can't access Spyder's IPython terminal.)