doc/install/troubleshooting_faq.inc.rst
.. _troubleshooting-install:
.. redirect-from:: /users/installing/troubleshooting_faq
.. _matplotlib-version:
To find out your Matplotlib version number, import it and print the
__version__ attribute:
import matplotlib matplotlib.version '0.98.0'
.. _locating-matplotlib-install:
matplotlib install locationYou can find what directory Matplotlib is installed in by importing it
and printing the __file__ attribute:
import matplotlib matplotlib.file '/home/jdhunter/dev/lib64/python2.5/site-packages/matplotlib/init.pyc'
.. _locating-matplotlib-config-dir:
matplotlib configuration and cache directory locationsEach user has a Matplotlib configuration directory which may contain a
:ref:matplotlibrc <customizing-with-matplotlibrc-files> file. To
locate your :file:matplotlib/ configuration directory, use
:func:matplotlib.get_configdir:
import matplotlib as mpl mpl.get_configdir() '/home/darren/.config/matplotlib'
On Unix-like systems, this directory is generally located in your
:envvar:HOME directory under the :file:.config/ directory.
In addition, users have a cache directory. On Unix-like systems, this is
separate from the configuration directory by default. To locate your
:file:.cache/ directory, use :func:matplotlib.get_cachedir:
import matplotlib as mpl mpl.get_cachedir() '/home/darren/.cache/matplotlib'
On Windows, both the config directory and the cache directory are
the same and are in your :file:Documents and Settings or :file:Users
directory by default:
import matplotlib as mpl mpl.get_configdir() 'C:\Documents and Settings\jdhunter\.matplotlib' mpl.get_cachedir() 'C:\Documents and Settings\jdhunter\.matplotlib'
If you would like to use a different configuration directory, you can
do so by specifying the location in your :envvar:MPLCONFIGDIR
environment variable -- see
:ref:setting-linux-macos-environment-variables. Note that
:envvar:MPLCONFIGDIR sets the location of both the configuration
directory and the cache directory.