Hi guys,
Is it possible to use ‘xlwt’ library package in erpnext. Because I’m getting this type of error.
import xlwt
ModuleNotFoundError: No module named ‘xlwt’
Thanks in Advance!
Hi guys,
Is it possible to use ‘xlwt’ library package in erpnext. Because I’m getting this type of error.
import xlwt
ModuleNotFoundError: No module named ‘xlwt’
Thanks in Advance!
Hi:
Is the module installed on your server? Note that the module must be installed on the right virtual environment.
Hope this helps.
Requirement already satisfied: xlwt in /home/erpnext/.local/lib/python3.8/site-packages (1.3.0)
The requirement is satisfied but its not showing in my virtual-env.
/my_project/env/lib/python3.8/site-packages
Have you solved this?
Hi @Anisha_Jain:
Install it on your virtual environment.
Easiest way is run pip install xlwt
from bench console
Hope this helps.