I can not use the pandas_profiling in python 3.5.3,it report the err
import pandas_profiling
import pandas as pd
dd = pd.read_csv('./company.csv',encoding='utf-8')
pandas_profiling.ProfileReport(dd)
same issue...
You should be able to manually resolve this by updating jinja.
After update jinja via pip install -U jinja2 and restart python kernel, this is issus was fixed. Thank you.
Thks
Most helpful comment
After update
jinjaviapip install -U jinja2and restart python kernel, this is issus was fixed. Thank you.