3

I'm using google colab for programming. I just wanted to know which version of the pandas_profiling package I'm using.

I tried with the below options. None of them worked.

  1. pandas_profiling.__version__
  2. pandas_profiling.version__version__
  3. pandas.show_versions()

I just want to let you know, I'm using pandas 1.0.3 version.

Can someone please help me with this?

user78910
  • 349
  • 2
  • 12
Venkatesh Gandi
  • 441
  • 1
  • 9
  • 24

1 Answers1

6

can you try to run the following from colab to see if it works?

!pip freeze |grep pandas-profiling
Allen Qin
  • 19,507
  • 8
  • 51
  • 67
  • Great! This worked. Can you let me know how this works, if possible? – Venkatesh Gandi Apr 14 '20 at 09:10
  • 1
    'pip freeze' list all installed packages and grep helps you find the line with pandas-profiling. Please accept the answer if you find it helpful. – Allen Qin Apr 14 '20 at 09:12
  • 1
    Awesome, Thanks for explaining. I tried to accept already. It says need to wait for 2 minutes to accept. I hope there is a time limit. Will defnetly accept :) . Don't worry. – Venkatesh Gandi Apr 14 '20 at 09:15