No module named 'tabula'

Hi,
I’m trying to deploy my app and had this problem, I put the lib at requirements.txt but doesn’t work.
Captura de Tela 2021-03-13 às 14.01.00

Hi @Ederson-Branco, the requirements.txt looks fine. Maybe you should import tabula first and then read_pdf

import tabula
from tabula import read_pdf

In case this doesn’t solve the problem, try to move the requirements.txt file to the top level of the repo as explained in this thread.

Thanks for the tip @aminey , but not yet work

import at the app.py:
Captura de Tela 2021-03-13 às 16.59.23

The structure of files on git hub
Captura de Tela 2021-03-13 às 16.59.39

get the same error

@Ederson-Branco Try to move both streamlit_app.py and requirements.txt to your main branch and deploy the app again from the main branch

1 Like

Thank you very much @aminey.

1 Like