1

I created a program to filter out rows of data that have empty cells, however, the people that will be using this program do not have any libraries installed, they only have Python 2.7. Is there a way to import Pandas via a path from a network drive? I looked up similar questions, but I can't even seem to find the path on my computer to Pandas (I installed all libraries with Anaconda). Thanks for any help.

Citut
  • 847
  • 2
  • 10
  • 25

1 Answers1

2

Have you used sys

import sys
sys.path.append(/mynetwork/path_to_pandas)
import pandas
PyNEwbie
  • 4,882
  • 4
  • 38
  • 86
  • How would I find the path to the Pandas on my computer? I have looked in common places that I found in other questions/answers, but I installed Pandas with Anaconda. – Citut May 16 '16 at 15:30
  • That is a different question - which has an answer here http://stackoverflow.com/questions/247770/retrieving-python-module-path – PyNEwbie May 16 '16 at 16:27