App not deploying

Streamlit App link:

GitHub Repository link:

Somebody please help me, I facing this kind of errors sins last two days. I am stuck in infinity Error loop, installing requirements Issue and some times json and python version issue…so on…:sob:
Please guide me as I am beginner…

You cannot have json in the requirements file.

2 Likes

To elaborate more, json is included with python, and is not something that can be installed separately, so trying to install it as a separate package will fail.

You can test this out by doing pip install -r requirements.txt which is essentially what will happen when you deploy the app. If that fails locally (which it will, in this case because of json) it will also fail when deploying. You can fix this by simply removing that line from requirements.txt

2 Likes

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.