Spaces:
Sleeping
Sleeping
File size: 284 Bytes
aa5d6d0 |
1 2 3 4 5 6 7 8 9 10 |
# https://discuss.streamlit.io/t/cannot-debug-streamlit-in-pycharm-2023-3-3/61581/2
try:
from streamlit.web import bootstrap
except ImportError:
from streamlit import bootstrap
real_script = 'app.py'
bootstrap.run(real_script, f'pycharm_runner.py {real_script}', [], {})
|