We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment we have this
sys.path.insert(0, '../') # relative coding of 'up' two folders.
which is ok for the PsychoPy demo stuff. But it's fragile. When we copy/paste demo experiments to start new ones, then it's clumsy.
import sys from os.path import expanduser home = expanduser("~") sys.path.insert(0, home + '/git-local/darc-experiments-python') # absolute path
But also add in a check that that path exists and give a meaningful error if not.
This will become redundant (in the demo .psyexp experiments) once bad and darc are included as part of PsychoPy.
bad
darc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At the moment we have this
which is ok for the PsychoPy demo stuff. But it's fragile. When we copy/paste demo experiments to start new ones, then it's clumsy.
How
But also add in a check that that path exists and give a meaningful error if not.
Note
This will become redundant (in the demo .psyexp experiments) once
bad
anddarc
are included as part of PsychoPy.The text was updated successfully, but these errors were encountered: