Search code examples
pipreportlab

ModuleNotFoundError: No module named 'reportlab'


I have tried: pip install report lab pip install --upgrade --force-reinstall reportlab;

but still reportlab cannot be recognised with pycharm but it's already imported via PIP as below


Solution

  • Use this command instead:

    pip install reportlab
    

    Also if you are using an "virtual enviroment" then that is causing the problem.

    If you are using pycharm then,
    Use this command in pycharm's terminal:

    pip install reportlab