Table Of Contents

Previous topic

Color spaces

Next topic

Data outputs

This Page

Quick links

Preferences

The Preferences dialog allows to adjust general settings for different parts of PsychoPy. The preferences settings are saved in the configuration file userPrefs.cfg. The labels in brackets for the different options below represent the abbreviations used in the userPrefs.cfg file.

In rare cases, you might want to adjust the preferences on a per-experiment basis. See the API reference for the Preferences class here.

Application settings (App)

These settings are common to all components of the application (Coder and Builder etc)

show start-up tips (showStartupTips):
Display tips when starting PsychoPy.
large icons (largeIcons):
Do you want large icons (on some versions of wx on OS X this has no effect)?
default view (defaultView):
Determines which view(s) open when the PsychoPy app starts up. Default is ‘last’, which fetches the same views as were open when PsychoPy last closed.
reset preferences (resetPrefs):
Reset preferences to defaults on next restart of PsychoPy.
auto-save prefs (autoSavePrefs):
Save any unsaved preferences before closing the window.
debug mode (debugMode):
Enable features for debugging PsychoPy itself, including unit-tests.
locale (locale):
Language to use in menus etc.; not all translations are available. Select a value, then restart the app. Think about adding translations for your language.

Builder settings (Builder)

reload previous exp (reloadPrevExp):
Select whether to automatically reload a previously opened experiment at start-up.
uncluttered namespace (unclutteredNamespace):
If this option is selected, the scripts will use more complex code, but the advantage is that there is less of a chance that name conflicts will arise.
components folders (componentsFolders):
A list of folder path names that can hold additional custom components for the Builder view; expects a comma-separated list.
hidden components (hiddenComponents):
A list of components to hide (e.g., because you never use them)
unpacked demos dir (unpackedDemosDir):
Location of Builder demos on this computer (after unpacking).
saved data folder (savedDataFolder):
Name of the folder where subject data should be saved (relative to the script location).
Flow at top (topFlow):
If selected, the “Flow” section will be shown topmost and the “Components” section will be on the left. Restart PsychoPy to activate this option.
always show readme (alwaysShowReadme):
If selected, PsychoPy always shows the Readme file if you open an experiment. The Readme file needs to be located in the same folder as the experiment file.
max favorites (maxFavorites):
Upper limit on how many components can be in the Favorites menu of the Components panel.

Coder settings (Coder)

code font (codeFont):
A list of font names to be used for code display. The first found on the system will be used.
comment font (commentFont):
A list of font names to be used for comments sections. The first found on the system will be used
output font (outputFont):
A list of font names to be used in the output panel. The first found on the system will be used.
code font size (codeFontSize):
An integer between 6 and 24 that specifies the font size for code display in points.
output font size (outputFontSize):
An integer between 6 and 24 that specifies the font size for output display in points.
show source asst (showSourceAsst):
Do you want to show the source assistant panel (to the right of the Coder view)? On Windows this provides help about the current function if it can be found. On OS X the source assistant is of limited use and is disabled by default.
show output (showOutput):
Show the output panel in the Coder view. If shown all python output from the session will be output to this panel. Otherwise it will be directed to the original location (typically the terminal window that called PsychoPy application to open).
reload previous files (reloadPrevFiles):
Should PsychoPy fetch the files that you previously had open when it launches?
preferred shell (preferredShell):
Specify which shell should be used for the coder shell window.
newline convention (newlineConvention):
Specify which character sequence should be used to encode newlines in code files: unix = n (line feed only), dos = rn (carriage return plus line feed).

General settings (General)

window type (winType):
PsychoPy can use one of two ‘backends’ for creating windows and drawing; pygame and pyglet. Here you can set the default backend to be used.
units (units):
Default units for windows and visual stimuli (‘deg’, ‘norm’, ‘cm’, ‘pix’). See Units for the window and stimuli. Can be overridden by individual experiments.
full-screen (fullscr):
Should windows be created full screen by default? Can be overridden by individual experiments.
allow GUI (allowGUI):
When the window is created, should the frame of the window and the mouse pointer be visible. If set to False then both will be hidden.
paths (paths):
Paths for additional Python packages can be specified. See more information here.
audio library (audioLib):
As explained in the Sound documentation, currently two sound libraries are available, pygame and pyo.
audio driver (audioDriver):
Also, different audio drivers are available.
flac audio compression (flac):
Set flac audio compression.
parallel ports (parallelPorts):
This list determines the addresses available in the drop-down menu for the Parallel Port Out Component.

Connection settings (Connections)

proxy (proxy):
The proxy server used to connect to the internet if needed. Must be of the form http://111.222.333.444:5555
auto-proxy (autoProxy):
PsychoPy should try to deduce the proxy automatically. If this is True and autoProxy is successful, then the above field should contain a valid proxy address.
allow usage stats (allowUsageStats):
Allow PsychoPy to ping a website at when the application starts up. Please leave this set to True. The info sent is simply a string that gives the date, PsychoPy version and platform info. There is no cost to you: no data is sent that could identify you and PsychoPy will not be delayed in starting as a result. The aim is simple: if we can show that lots of people are using PsychoPy there is a greater chance of it being improved faster in the future.
check for updates (checkForUpdates):
PsychoPy can (hopefully) automatically fetch and install updates. This will only work for minor updates and is still in a very experimental state (as of v1.51.00).
timeout (timeout):
Maximum time in seconds to wait for a connection response.

Key bindings

There are many shortcut keys that you can use in PsychoPy. For instance did you realise that you can indent or outdent a block of code with Ctrl-[ and Ctrl-] ?