I am trying to do web app using django which uses pandas to read very large csv file. I've follows these steps:
The problem is I am unable to import pandas in views.py
of my django project.
It's throwing the exception ImportError: no module named pandas
.
This django project created in conda env only right? Then why am I unable to import pandas?
Thanks,Issue is resolved.
Its's working after i changed the python interpreter from default one to interpreter which is there in conda environment where pandas are installed.