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.
Have you used sys
import sys
sys.path.append(/mynetwork/path_to_pandas)
import pandas