Hi i am trying to deploy a streamlit app but it is giving me an error since i have to set “poppler” in path apparently to use the pdf2image library. any way to do this?
Hi @zappy586
You can set environment variables using something like the following in your app.py file.
import streamlit as st
import os
# Set the path as environment variable
os.environ['PATH'] = '/path/to/dir/'
Additionally, you can also use Streamlit’s secrets as well. More info here:
Set on Streamlit Community Cloud, then to use in app:
st.secrets['PATH']
Hope this helps!
Best regards,
Chanin
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.