Anna K
Anna K

Reputation: 1774

Django. No module named reportlab.pdfgen

I get such error in my django website

Exception Value: No module named reportlab.pdfgen

In my local linux environment it works. Is there any way to fix it?

you can see this problem here

Upvotes: 3

Views: 6031

Answers (2)

venugopal voraganti
venugopal voraganti

Reputation: 47

Try with sudo apt-get install python-reportlab

Upvotes: -2

byteC0de
byteC0de

Reputation: 5273

Try installing reportlab using pip:

pip install reportlab

Upvotes: 5

Related Questions