Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find location of Pandas installed on Windows

I am looking to review the source code for Pandas and cannot seem to find it on my computer using a simple system search. I installed the package through Anaconda. Is there a common place that libraries installed through Anaconda are located, or is there a script I can run in Terminal to provide the location of where it is installed?

like image 349
R Fuller Avatar asked Oct 31 '25 02:10

R Fuller


1 Answers

You can find the location by looking at

import pandas
pandas.__path__
like image 67
joris Avatar answered Nov 02 '25 17:11

joris