Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to import Pandas Profiling

I am unable to import pandas profiling in jupyter notebook. Could someone please tell me whats wrong. enter image description here

like image 508
NEX Avatar asked Mar 16 '18 06:03

NEX


4 Answers

Thanks a lot to all who tried to help me out. This worked.

import sys
!{sys.executable} -m pip install pandas-profiling
like image 171
NEX Avatar answered Oct 15 '22 03:10

NEX


conda install -c conda-forge pandas-profiling Try this command to install If it doesn't work then try pip install pandas-profiling

like image 36
Niranjan Avatar answered Oct 15 '22 04:10

Niranjan


If you are using Anaconda distribution then use this:

conda install -c conda-forge pandas-profiling

conda install -c conda-forge/label/cf201901 pandas-profiling

conda install -c conda-forge/label/cf202003 pandas-profiling

I was getting the same problem and it worked for me.

like image 22
Avinash Parashar Avatar answered Oct 15 '22 04:10

Avinash Parashar


For Mac

pip install pandas-profiling

And For Ubuntu

!pip install pandas-profiling
like image 38
Ankit Kumar Rajpoot Avatar answered Oct 15 '22 04:10

Ankit Kumar Rajpoot