Skip to content

hkust-dh/streamlit-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learn Python From Zero For Absolute Beginner (3): Create Website

Streamlit App

URL: https://hkust-dh-demo.streamlit.app/

This website above serves as a demo to showcase the capabilities and functionalities of Streamlit in creating web applications. If you are interested in learning the step-by-step process of how this website was created, please refers to our article below for detailed instructions and explanations.

Learn Python From Zero For Absolute Beginner (3): Create Website https://digitalhumanities.hkust.edu.hk/tutorials/learn-python-from-zero-for-absolute-beginner-3-create-website/


View locally

  1. Ensure python and pip are installed in your computer.

  2. Install the required dependencies or packages listed in the requirements.txt.

    pip3 install -r requirements.txt
    

    OR

    pip install -r requirements.txt
    
  3. Run the streamlit application.

    streamlit run Homepage.py
    

    OR

    python -m streamlit run Homepage.py