Reputation: 522
I have installed numpy and pandas in ubuntu 12.04. Also, I have added django_pandas in my INSTALLED_APPS but then also I am getting ImportError: No module named django_pandas how should i proceed now
Upvotes: 2
Views: 3008
Reputation: 522
sorry for the question. i havent correctly executed the command pip install https://github.com/chrisdev/django-pandas/tarball/master. after going for the above command it worked fine
Upvotes: 0
Reputation: 26582
There are no extra steps you need to take to install "Pandas in Django", just install Django and Pandas using pip:
pip install django
pip install pandas
Upvotes: 3