Skip to content
Advertisement

Tag: streamlit

Could not build wheels for pyarrow

This issue occurred when I install streamlit. I had also tried to install “pyarrow” separately. But the same error occurred. Both Window and Python are 64bit. Can anyone please help me with this Issue? Thank you in advance. enter image description here enter image description here Also tried to install pyproject.toml. Answer pyarrow wheels are not available for Python3.11 on

How to make label in st.multiselect bigger/bolder

I am looking to make the label of multiselect bigger / bolder, my code looks like this : I have tried adding this : from this page : https://discuss.streamlit.io/t/the-problem-changing-label-font-of-text-input-and-multi-select/23329 but all it does is display the text on my app like so : Am I doing this wrong? Could it be the streamlit version? Answer You should wrap the css

How to create a Dockerfile for streamlit app

I am aiming to deploy a web-app written with Sreamlit, I can run this on my local machine by running streamlit run Home.py in my command line. However, I’m not sure how to create the docker file. Any advice? Answer In order to Dockerise your app you need two files: Dockerfile : describes the image structure, docker-compose.yml : describes how

Streamlit python variable declaration

I wrote some dummy code to replicate my problem. I need to do some simple computations in Streamlit, but I can’t seem to find out how they handle variables and how to store info Here is my example: I get the error: What am I doing wrong? Answer The question has nothing to do with Streamlit, the variables are just

File doesnt exist error before user inputs file name

I am working with streamlit in python to produce a tool that takes a user’s input of a csv filename, and then carries out cleaning/tabulating of the data within the file. I have encountered an issue where before the user has entered their filename, my streamlit site shows a “FileNotFoundError: [Errno 2] No such file or directory:” This is expected

OSError: [Errno 22] Invalid argument: – Changing backslash to forward slash not helping! (Windows)

I am working with streamlit to create a tool that takes user input (csv file name) and cleans/produces output as a dataframe. I continuously get OSError: [Errno 22] Invalid argument: ‘M:/Desktop/AutomationProject/’ I am aware of all the past solves of this error, however they all say change backslash to forward slash on windows and this is a quick fix, however

Unable to load pickle file in streamlit

I have some code to deploy model in streamlit. I just upload all file to github and share it in streamlit app. Here is some code It runs perfect in local. But in streamlit it has some bug It’s the first time that I work on streamlit. So, thank you for reading! Have a nice day! Answer I had the

Advertisement