简体   繁体   中英

pathlib library error in pathlib.Path.home() : type object 'Path' has no attribute 'home'

So I've just updated matplotlib to version 3.0.2 . I can import matplotlib just fine, but when I try to import matplotlib.pyplot , I get :

---------------------------------------------------------------------------
AttributeError                            
Traceback (most recent call last) <ipython-input-3-864e826dab68> in <module>()
----> 1 import matplotlib.pyplot

/usr/local/lib/python3.6/dist-packages/matplotlib/pyplot.py in <module>()
     30 from cycler import cycler
     31 import matplotlib
---> 32 import matplotlib.colorbar
     33 import matplotlib.image
     34 from matplotlib import rcsetup, style

/usr/local/lib/python3.6/dist-packages/matplotlib/colorbar.py in <module>()
     30 import matplotlib.collections as collections
     31 import matplotlib.colors as colors
---> 32 import matplotlib.contour as contour
     33 import matplotlib.cm as cm
     34 import matplotlib.gridspec as gridspec

/usr/local/lib/python3.6/dist-packages/matplotlib/contour.py in <module>()
     16 import matplotlib.colors as mcolors
     17 import matplotlib.collections as mcoll
---> 18 import matplotlib.font_manager as font_manager
     19 import matplotlib.text as text
     20 import matplotlib.cbook as cbook

/usr/local/lib/python3.6/dist-packages/matplotlib/font_manager.py in <module>()
    133 
    134 if not USE_FONTCONFIG and sys.platform != 'win32':
--> 135     OSXFontDirectories.append(str(Path.home() / "Library/Fonts"))
    136     X11FontDirectories.append(str(Path.home() / ".fonts"))
    137 

AttributeError: type object 'Path' has no attribute 'home'

I'm on Ubuntu 18.04 LTS, on Jupyter Lab 0.35.4 with python3.6.7.

Side information/question : Before installing jupyter lab this morning, I was using jupyter notebook with python3.6.0. Now the kernels says it is using python3.6.7, although I cannot seem to find it anywhere on my system.

That being told, when I import anything else that doesn't rely on matplotlib.pyplot, everything works perfectly. If I try seaborn, for example, it returns me to the same attribute error.

EDIT In fact, the error happens with the pathlib library. It also happens whether or not I'm in jupyter. To replicate it :

from pathlib import Path
Path.home() 

and the error is the same as before :

AttributeError: type object 'Path' has no attribute 'home'

I hit this recently where matplotlib was trying to import and use pathlib and failing because my virtualenv was 3.6 but it was somehow getting a 3.4 pathlib and hitting either the exception you hit or another exception where the mkdir() it was calling was missing the exists_ok optional parameter.

It turned out that one of the modules I was using, openapi-spec-validator version 0.2.6, downloads a copy of pathlib (of the 3.4 type) and sticks it in the base site-packages folder where it can easily end up being used by matplotlib instead of the standard library version. In my case upgrading to 0.2.7 fixed it as that version doesn't download and place the file there.

However, if you're not using openapi-spec-validator and you hit this problem check to see if there are extra copies of pathlib.py floating around your environment.

If your environment include multiple versions of python, check which version of pathlib your environment is currently using by pip show.

pip show pathlib

If it is pointing the pathlib of python <3.5, modify the PYTHONPATH to point pathlib of expected version of python.

You can further check the list of directory of python package by sys.path. If it shows directories of an unexpected version of python earlier than that of an expected version, that's the reason why your environment import older pathlib.

import sys
sys.path

I was able to fix this problem by performing pip uninstall pathlib while in the environment from which I using python and getting this error.

This should work for anyone using python >=3.5

The cause of the problem is that from python 3.5 and later, pathlib comes bundled with all the standard libraries of python. This will be the newer version that has Path.home() . However, if for some reason, like me, you have pathlib also installed as an independent package via pip , it will be the older version that doesn't have pathlib.Path.home() , and therefore breaks when home() is called.

Before uninstalling pathlib with pip uninstall pathlib make sure that:

  1. You actually have python >= 3.5 by running python --version .
  2. That you actually have a redundant installation of the "old" pathlib by running pip show pathlib

what about the classic trick of uninstalling matplotlib and installing it again?

pip uninstall matplotlib==3.0.2
pip install matplotlib==3.0.2

Also, if you are not doing it already, I strongly suggest you should check using virtual environments (eg this guide ) as you will have absolute control on which packages you install/modify/uninstall in a particular virtualenv (not affecting your development environment for all your projects).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM