I’m trying to run psychopy from a local repo that I acquired by forking the GitHub repo and installing it with pip install -e
as suggested in the psychopy tutorial Using the repository.
I tried to start psychopy by executing the file psychopyApp.py
, but I get the following error:
ModuleNotFoundError: No module named 'psychopy.app.console'
What do I need to do, to open the GUI?
Why can’t I import psychopy.app.console
? I can find the file console.py
in the correct folder psychopy\app\
.
Thanks for any help.