Venkatesh Gandi
Venkatesh Gandi

Reputation: 461

How to know which version of pandas-profiling I'm using?

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?

Upvotes: 3

Views: 3817

Answers (1)

Allen Qin
Allen Qin

Reputation: 19947

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

!pip freeze |grep pandas-profiling

Upvotes: 6

Related Questions