Spaces:
Running
Running
bash debug 2/?
Browse files- utils/config_fabric.py +2 -1
utils/config_fabric.py
CHANGED
@@ -359,7 +359,8 @@ if __name__ == '__main__':
|
|
359 |
# progress_bar.progress(i + 1)
|
360 |
|
361 |
# Run the actual command
|
362 |
-
result = subprocess.run(command, capture_output=True, text=True)
|
|
|
363 |
st.write("bash results:",result.stdout)
|
364 |
st.write("## Results")
|
365 |
|
|
|
359 |
# progress_bar.progress(i + 1)
|
360 |
|
361 |
# Run the actual command
|
362 |
+
# result = subprocess.run(command, capture_output=True, text=True)
|
363 |
+
result = subprocess.run(['python', '-W', 'ignore', '-c', 'print("Hello, World!")'], capture_output=True, text=True)
|
364 |
st.write("bash results:",result.stdout)
|
365 |
st.write("## Results")
|
366 |
|