Psychopy installation on Raspberry Pi 4

Anyone have a functioning pipeline for installing psychopy on a Raspberry Pi 4 Model B? I am using Raspberry Pi OS (64 bit) and attempting to use the below instructions to install using python 3.11, but am running into many installation issues, particularly with wxpython. Do I need to use an earlier python version? Does anyone have this successfully installed with more recent versions of python, wxpython, psychtoolbox, etc?

Thanks for your help, I am pretty new to this so any guidance is appreciated!

There’s actually a repo (built from the main PsychoPy repo) which has only the library elements, without any of the app stuff, meaning it doesn’t need wx. You could try installing that instead, if you’re not looking to build experiments on the pi:

pip install git+https://github.com/psychopy/psychopy-lib@release

I had a similar problem on x86 linux. Turned out that this post ( WxPython Install Issue on MacOS 11.6 with pyenv and python 3.11.0 - #3 by Mark_McDowall - Discuss wxPython ) gave me the answer:

CC=clang CCX=clang pip3 install wxPython

which got me past the wxpython problem. Maybe nothing to do with your problem, but in case someone searches this forum for wxpython work-arounds python3.11 , maybe it will help.