Reputation: 1774
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
Reputation: 47
Try with sudo apt-get install python-reportlab
sudo apt-get install python-reportlab
Upvotes: -2
Reputation: 5273
Try installing reportlab using pip:
reportlab
pip
pip install reportlab
Upvotes: 5