0

I am trying to install Pandas-Profiling package for Jupyter Notebook but no luck!!!

Tried installing the package from the Anaconda Navigator (Home) -> Environment -> base(root) -> Search packages -> Pandas-profiling

A dialog box appears to show as "Solving Package modifications" but after some time, the dialog box appears blank!!!

enter image description here

Tried "Conda prompt" option also but it shows deprecated

merv
  • 67,214
  • 13
  • 180
  • 245
mhnkmr
  • 1
  • 2
  • 1
    have you tried pip install. I didnt get any issue when I installed, infact I did it from my jupyter notebook. – Vishwas Oct 14 '19 at 15:45
  • 3
    Try installing it from Anaconda Prompt `conda install pandas-profiling`. I strongly caution against following advice to use `pip`, especially as this appears to be your **base** env. Why that's a bad idea is detailed in "[*Using Pip in a Conda Environment*](https://www.anaconda.com/using-pip-in-a-conda-environment/)." – merv Oct 14 '19 at 19:47

2 Answers2

0

Sometimes, it's a version issue. Try this

!pip install -U pandas-profiling

Reference

Dr Nisha Arora
  • 632
  • 1
  • 10
  • 23
0

Try

pip install https://github.com/pandas-profiling/pandas-profiling/archive/master.zip

Good luck!

Reference

Jie
  • 1,107
  • 1
  • 14
  • 18