ERROR: Could not find a version that satisfies the requirement pywin32

Hi @zoujojo, welcome to the Streamlit community!! :wave: :partying_face:

The pywin32 module provides access to many of the Windows APIs from Python. Apps deployed to Streamlit Sharing are executed in a Linux environment. As such, pywin32 fails to install on non-Windows systems, including Streamlit Sharing.

To fix the error, remove both pywin32 and pywinpty from lines 72 and 73 of your requirements.txt file.

Make sure to upload any datasets (including California_Fire_Incidents.csv) used in your app to the GitHub repo.

Happy Streamlit’ing! :balloon:
Snehan

3 Likes