From 1ee08107332a3974bcf324f9f1050e94553b2331 Mon Sep 17 00:00:00 2001 From: KWON Date: Fri, 27 Jun 2025 10:30:50 +0900 Subject: [PATCH] =?UTF-8?q?ubuntu22.04=20=EC=97=90=EC=84=9C=EB=8A=94=20pyt?= =?UTF-8?q?hon3=20=EC=9C=BC=EB=A1=9C=20=EC=8B=A4=ED=96=89=ED=95=B4?= =?UTF-8?q?=EC=95=BC=20=ED=95=A8.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/gnu_autoupload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/gnu_autoupload.py b/data/gnu_autoupload.py index 230cd87..43d0b46 100644 --- a/data/gnu_autoupload.py +++ b/data/gnu_autoupload.py @@ -16,7 +16,7 @@ weather_file = os.path.join(base_dir, weather_filename) # 파일 존재 확인 및 생성 루프 while not os.path.isfile(weather_file): print(f"[{datetime.now().strftime('%H:%M:%S')}] {weather_file} 파일이 없습니다. {capture_script} 실행 중...") - subprocess.call(['python', capture_script]) + subprocess.call(['python3', capture_script]) #time.sleep(1) print(f"[{datetime.now().strftime('%H:%M:%S')}] {weather_file} 파일을 확인했습니다. 계속 진행합니다.")