Environment variables#
- MPLBACKEND#
This optional variable can be set to choose the Matplotlib backend. See What is a backend?.
- MPLCONFIGDIR#
This is the directory used to store user customizations to Matplotlib, as well as some caches to improve performance. If
MPLCONFIGDIRis not defined,HOME/.config/matplotlibandHOME/.cache/matplotlibare used on Linux, andHOME/.matplotlibon other platforms, if they are writable. Otherwise, the Python standard library’stempfile.gettempdiris used to find a base directory in which thematplotlibsubdirectory is created.
- PATH#
The list of directories searched to find executable programs.
- PYTHONPATH#
The list of directories that are added to Python’s standard search list when importing packages and modules.
- QT_API#
The Python Qt wrapper to prefer when using Qt-based backends. See the entry in the usage guide for more information.
Setting environment variables in Linux and macOS#
To list the current value of PYTHONPATH, which may be empty, try:
echo $PYTHONPATH
The procedure for setting environment variables in depends on what your default shell is. Common shells include bash and csh. You should be able to determine which by running at the command prompt:
echo $SHELL
To create a new environment variable:
export PYTHONPATH=~/Python # bash/ksh
setenv PYTHONPATH ~/Python # csh/tcsh
To prepend to an existing environment variable:
export PATH=~/bin:${PATH} # bash/ksh
setenv PATH ~/bin:${PATH} # csh/tcsh
The search order may be important to you, do you want ~/bin to be
searched first or last? To append to an existing environment variable:
export PATH=${PATH}:~/bin # bash/ksh
setenv PATH ${PATH}:~/bin # csh/tcsh
To make your changes available in the future, add the commands to your
~/.bashrc or ~/.cshrc file.
Setting environment variables in Windows#
Open the Control Panel (), start the System program. Click the Advanced tab and select the Environment Variables button. You can edit or add to the User Variables.