[streamlit] OSError: [Errno 28] inotify watch limit reached
streamlit 설치 후, 테스팅해보는데 다음과 같은 에러 발생.
# 기존 명령어
$ streamlit hello
# 새로운 명령어
$ streamlit hello --server.fileWatcherType none
기존 명령어에 아래 옵션을 붙여주면 해결.
--server.fileWatcherType none
https://discuss.streamlit.io/t/oserror-errno-24-inotify-instance-limit-reached/5506/5
OSError: [Errno 24] inotify instance limit reached
Cheerful!! I find a solution after nearly one year. Other solution just change max_user_watches but not max_user_instances. We should change this config value in similar methods. Change sysctl.conf in host machine not containers. sudo nano /etc/sysctl.conf
discuss.streamlit.io
https://lapina.tistory.com/219
[Streamlit] OSError: [Errno 24] inotify instance limit reached 오류 해결 방법_걱정 노노
개발환경 : Ubuntu 20.4 / Python3.10 / streamlit 1.25.0 Streamlit을 처음 설치하고 나서 명령창에 $ streamlit hello 를 치면 뭔가 나와야 되는데 아래와 같은 오류가 발생했다. streamlit run first_app.py Collecting usage sta
lapina.tistory.com