I am trying to connect PostgreSQL on Heroku server using psycopg2, it worked locally on my pc, but after pushed to Streamlit Cloud, it shows ModuleNotFoundError after rebooting. Here is the Traceback
Uncaught app exception
Traceback (most recent call last):
File "/home/appuser/venv/lib/python3.7/site-packages/streamlit/script_runner.py", line 354, in _run_script
exec(code, module.__dict__)
File "/app/data_test/src/example.py", line 4, in <module>
import psycopg2
ModuleNotFoundError: No module named 'psycopg2'
I have the following two packages in requirements.txt at the top level repo
I would try adding libpq-dev to a packages.txt file, which will install Postgres development headers on the image. Often times, when database drivers don’t work, it’s because it’s trying to call an underlying C library.
Many thanks @randyzwitch for the reply! I checked a few posts, and tried with adding libpq-dev to a packages.txt, however the problem still persists.
I suspect it is due to a virtual environment configuration, as I tried two different pipenv on my local machine, one can import psycopg2, and the other cannot.
Streamlit looks at your requirements file’s filename to determine which Python dependency manager to use in the order below. Streamlit will stop and install the first requirements file found.
What’s happening is that Streamlit parses your Pipfile containing no packages, and exits the installation process – entirely skipping your requirements.txt.
Once you delete the Pipfile from your repo, Streamlit will install the Python dependencies specified in requirements.txt, including the psycog2-binary package.