I rebooted my app but I still got the error [manager] could not verify installer exit code: open /app/install_status: no such file or directory
Hello Guys,
i have the same Problem. Im new to streamlit and tried my first app to share.
It runs locally but not as a app.
Here is the output from streamlit:
Running setup.py install for fbprophet: started
Running setup.py install for fbprophet: still running...
Running setup.py install for fbprophet: finished with status 'done'
DEPRECATION: fbprophet was installed using the legacy 'setup.py install' method, because a wheel could not be built for it. A possible replacement is to fix the wheel build issue reported above. You can find discussion regarding this at https://github.com/pypa/pip/issues/8368.
Successfully installed Cython-0.29.23 LunarCalendar-0.0.9 PyPDF2-1.26.0 aenum-2.2.6 appdirs-1.4.4 attrs-20.3.0 beautifulsoup4-4.9.3 cachetools-4.2.1 certifi-2020.12.5 chardet-4.0.0 click-7.1.2 click-plugins-1.1.1 cligj-0.7.1 cmdstanpy-0.9.5 convertdate-2.3.2 cycler-0.10.0 dateparser-1.0.0 decorator-5.0.7 deprecation-2.1.0 docopt-0.6.2 dogpile.cache-1.1.2 ephem-3.7.7.1 fbprophet-0.7.1 fiona-1.8.19 geopandas-0.9.0 hijri-converter-2.1.1 holidays-0.11.1 idna-2.10 importlib-metadata-1.7.0 kiwisolver-1.3.1 korean-lunar-calendar-0.2.1 lxml-4.6.3 matplotlib-3.4.1 munch-2.5.0 numpy-1.20.2 packaging-20.9 pandas-1.2.4 pbr-5.5.1 pillow-8.2.0 pymeeus-0.5.11 pyparsing-2.4.7 pyproj-3.0.1 pystan-2.19.1.1 python-dateutil-2.8.1 pytz-2021.1 regex-2021.4.4 requests-2.25.1 scipy-1.6.2 setuptools-git-1.2 shapely-1.7.1 six-1.15.0 soupsieve-2.2.1 stevedore-3.3.0 tabulate-0.8.9 tqdm-4.60.0 tzlocal-2.1 urllib3-1.26.4 wetterdienst-0.15.0 zipp-3.4.1
WARNING: You are using pip version 21.0.1; however, version 21.1 is available.
You should consider upgrading via the '/home/appuser/venv/bin/python -m pip install --upgrade pip' command.
[manager] Python dependencies were installed from /app/gesundheitsamt/requirements.txt using pip.
[manager] Processed dependencies!
2021-04-25 13:43:38.742 An update to the [server] config option section was detected. To have these changes be reflected, please restart streamlit.
2021-04-25 13:43:39.174 Importing plotly failed. Interactive plots will not work.
2021-04-25 13:43:39.572 Cache directory is /home/appuser/.cache/wetterdienst
[manager] Streamlit server consistently failed status checks
[manager] Please fix the errors, push an update to the git repo, or reboot the app.
How can i get more information about the error?
Thanks in advance
I believe I fixed this https://share.streamlit.io/ffreemt/st-bumblebee-aligner/dev/st_app.py . I believe the fix @randyzwitch was referring to didn’t propagate automatically. I am planning to run through all apps tomorrow after our scheduled release to distribute the fix.
Faced the same issue today. Thank you for the solution. This seems to work.
Had the same issue, I changed the port in config.toml to 8501 and now it works.
I encountered the same issue as well. Thank you for the solution. It works after I added these to the TOML config file:
[server]
headless = true
port = 8501
Hello, How can I add this TOML config file to my app on windows?
@Nabil-Miri Go to streamlit application folder in vsc → create a folder named “.streamlit” → inside create a file named “config.toml”
Hello everyone,
I am new to Streamlit. I have tried to deploy my first app, but it crashes. No error message is showed, only the following:
[14:14:21] Processed dependencies!
Collecting usage statistics. To deactivate, set browser.gatherUsageStats to False.
[14:16:13] Streamlit server consistently failed status checks
[14:16:13] Please fix the errors, push an update to the git repo, or reboot the app.
The Streamlit app works fine locally. It consists of a map made with the “hvplot” package (in fact, I want to display several maps, but to save memory I only display one map). I have tried to reboot the app several times, but the result is the same. Also, I have deleted the app and created another one, but it does not seem to help.
Some information of interest:
Streamlit version: 1.22.0
Operating system: Windows 10
GitHub repo: GitHub - dsaynesp/corrs-spain-app
App: https://dsaynesp-corrs-spain-app-home-e0633y.streamlit.app/
Can someone please help me? Thanks in advance.
Dayan