Reputation: 1
I'm trying to import panda
s into a script.
I'm using anaconda
, I've already edited the python
path to the executable file in the anaconda3
folder.
I'm just not able to access any of the libraries I've downloaded (matplotlib
, pandas
, numpy
)
Just looking for some guidance. Thanks!
Upvotes: 0
Views: 202
Reputation: 303
Don’t edit the PYTHONPATH or PATH yourself. Let Anaconda handle it for you. Switch to the appropriate conda environment using conda at the command-line and try importing those modules again.
Upvotes: 1