proprius
proprius

Reputation: 522

Installing pandas in django

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

Answers (2)

proprius
proprius

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

jabaldonedo
jabaldonedo

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

Related Questions