[Week 20- Day 4] 회고

2022. 6. 2. 11:12About Me/AI Tech

# ERROR Tracking

상황 : FastAPI 를 실행하고, 다른 창에서 Streamlit을 실행하는 명령어에서 오류 발생

OSError: [Errno 28] inotify watch limit reached

 

해결책 : 맨 마지막 댓글이 도움이 되었다.

 

OSError: [Errno 24] inotify instance limit reached

change your steamlit run args --server.fileWatcherType none can solve it.

discuss.streamlit.io

 

# ERROR Tracking

상황 : Streamlit 로딩 Timeout

해결책 : 실행 명령어에 포트 옵션 추가

python3 -m streamlit run app/frontend.py --server.port 30002

 

 

Streamlit Docs

Join the community Streamlit is more than just a way to make data apps, it's also a community of creators that share their apps and ideas and help each other make their work better. Please come join us on the community forum. We love to hear your questions

docs.streamlit.io

 

 

## 피드백

다른 방법이 없나 찾아보다가, 깃허브에 관련 코드가 있는 것을 확인했다. 

 

 

 

 

 

 

 

반응형

'About Me > AI Tech' 카테고리의 다른 글

[Week 21- Day 2] 회고  (0) 2022.06.07
[Week 20- Day 5] 회고  (0) 2022.06.04
[Week 20- Day 2] 회고  (0) 2022.06.01
[Week 20- Day 1] 회고  (0) 2022.05.31
[Week 19- Day 5] 회고  (0) 2022.05.28