我在anaconda环境中使用python。当我导入matplotlib时,我遇到了与xwpython的兼容性问题。所以,我想切换后端。通常,这将使用matplotlibrc文件完成。但是,似乎忽略了~/.config/matplotlib/
下的matplotlibrc。是否可以检查在导入matplotlib期间是否使用了matplotlibrc文件?使用python 2.7。
答案 0 :(得分:6)
您可以使用以下方式获取文件路径:
import matplotlib
print(matplotlib.matplotlib_fname())
在我的情况下返回:
' /Users/m300241/.matplotlib/matplotlibrc'