Requirement Error

Hi, I’m trying to turn my code into a stream lit app but when I try to load the page it says “Error installing requirements. Click “Manage App” and consult the terminal for more details.” I have my app file and also my requirements file. The libraries i’m trying to install are (code from my app.py file)

import streamlit as st
from datetime import date
import requests
from bs4 import BeautifulSoup
import re

In the requirements.txt file here is what I have

re
beautifulsoup4

If it helps here is the console log page: https://hastebin.com/yuqegebebo.sql

I think you can actually delete “re” from the requirements file if you’re referring to the Python regular expressions package (I think that’s built in / you don’t need to separately download it)

1 Like

Yup this actually fixed it thanks for the help

1 Like

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