Citut
Citut

Reputation: 907

Import Pandas from a path

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.

Upvotes: 1

Views: 3618

Answers (1)

PyNEwbie
PyNEwbie

Reputation: 4940

Have you used sys

import sys
sys.path.append(/mynetwork/path_to_pandas)
import pandas

Upvotes: 2

Related Questions