From 81c9b632e8936be6d8e9ba597447ee8d632ae18b Mon Sep 17 00:00:00 2001 From: Jaewook Lee Date: Thu, 23 Jan 2025 20:47:54 +0900 Subject: [PATCH] FIX python3/pip3 --- README.md | 2 +- app.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index edfd673..f2602e2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Run ```bash -python app.py +python3 app.py ``` # Open diff --git a/app.py b/app.py index 1d66692..351e6bb 100644 --- a/app.py +++ b/app.py @@ -1,6 +1,6 @@ -# http://localhost:8501 +# http://localhost:5002 try: import os, io, tempfile, streamlit -except: os.system('pip install -q streamlit') +except: os.system('python3 -m pip install -q streamlit') finally: import streamlit as st if st.runtime.exists(): st.title('맥모닝 OCR')