Environment variables — Matplotlib 3.10.1 documentation (original) (raw)
HOME#
The user's home directory. On Linux, ~ is shorthand for HOME.
MPLBACKEND#
This optional variable can be set to choose the Matplotlib backend. SeeWhat is a backend?.
MPLCONFIGDIR#
This is the directory used to store user customizations to Matplotlib, as well as some caches to improve performance. IfMPLCONFIGDIR is not defined, _HOME_/.config/matplotlib
and _HOME_/.cache/matplotlib
are used on Linux, and_HOME_/.matplotlib
on other platforms, if they are writable. Otherwise, the Python standard library's tempfile.gettempdir is used to find a base directory in which the matplotlib
subdirectory 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:
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:
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.