How to check python version of deployed streamlit app?

Summary

I want to check the python version of streamlit app

Introduction

I deployed a streamlit app. I put dependencies into “requirements.txt” file in which has the “dlib-19.22.99-cp39-cp39-win_amd64.whl” file. It is compiled binary library run on python version 3.9. Thus, I setup my app run on python 3.9 but the library still be not installed. I tried to install this library using python 3.9 in local, then it works. Log show below:

Where should I check the current python version of the app?
Are there any solution to solve me problem?

Thanks in advance.

You cannot deploy windows wheels on Streamlit Cloud, because the runtime is based on debian linux.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.