I suddenly encountered the error message that ‘Erro Installing Requirements’ so I was trying to search it in the community and have done most of the guidance. I think it’s a something matter of dependency in package.txt file , but no idea which part of it is really matter.
Please guide me to go to the right direction.
Streamlit version: 1.2.0
Anaconda Navigator: 2.1.1
my packages.txt
freeglut3-dev
libgtk2.0-dev
libgl1-mesa-glx
tesseract-ocr
libtesseract-dev
libtesseract4
tesseract-ocr-all
I don’t see any obvious mistakes in either of the files. In fact, I was able to fork your repo that had the exact same dependency files and successfully deploy the app.
Have you tried rebooting the app and/or deleting it and redeploying?
Hey @djshan1979
if you still have the error, you could try this:
Don’t use pip freeze > requirements.txt as it will include way to many libraries. Let streamlit do the work and only include packages that you import-statement in your scripts.
Remove all the version numbers and only use the package names. Streamlit will then automatically get the latest version it is compatible with.