Skip to content

Commit b454590

Browse files
committed
Use conda Python instead of system python3
- Changed python3 to python (uses conda env) - Ensures pandas and other dependencies available - Fixed newline escaping (\\n -> \n) Ref: #38
1 parent ed933e1 commit b454590

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

check_hf_status.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ if in_progress_count > 0 or completed_count < 8:
247247
248248
ENDPYTHON
249249
250-
# Execute the Python script
251-
python3 /tmp/check_hf_status.py
250+
# Execute the Python script (use 'python' from conda env, not 'python3')
251+
python /tmp/check_hf_status.py
252252
253253
# Clean up
254254
rm -f /tmp/check_hf_status.py

0 commit comments

Comments
 (0)