pandas – Error in reading html to data frame in Python “html5lib not found”
pandas – Error in reading html to data frame in Python “html5lib not found”
If you read the error message, you dont have html5lib
installed. Do:
pip install html5lib
in your terminal.
If you are calling from jupyter notebook (just like you did with !
), try to restart the kernel in order to have the packages loaded.