Hi all,
here is a simple solution for installing PsychoPy using Anaconda, since PsychoPy does not seem to start if you simply install with conda and the *.yml template on OS X Monterey. I was struggling several days with this, the problem seems to be wxpython.
For me, it worked to:
- Create conda enviroment an activate it:
> conda create -n psychopy python=3.6
> conda activate psychopy
- Now in the conda env install psychopy using pip:
> pip install psychopy
- The problem sseems to be wxpython. For running a GUI that uses wxpython (as is the case with PsychoPy) you need pythonw running. For this, installing the “python.app” via conda is sufficient.
> conda install python.app
- Now, when this has been successfully installed you can start PsychoPy:
> psychopy
Cheers,
Sven.