Skip to content

Latest commit

 

History

History
43 lines (24 loc) · 1.3 KB

README.md

File metadata and controls

43 lines (24 loc) · 1.3 KB

About the project

This project is a simple example of how to build a web site using streamlit.

How to use streamlit

Find documentation here

Setup the project (First time only)

Download the project

Download the source code from the repository. streamlit_starter

Install VS Code

To install vs code, go to the official website

For windows: Install here

Install python

To install python, go to the official website

Open the project in VS Code

  • Open vs code
  • Click on File -> Open Folder
  • Select the folder where you downloaded the project

Install the required packages

Open the terminal in vs code:

  • Click on Terminal -> New Terminal
  • Type the following command in the terminal and click enter: python -m venv .venv
  • Type the following command in the terminal and click enter: source .venv/bin/activate
  • Type the following command in the terminal and click enter: pip install -r requirements.txt

Run the project

  • Type the following command in the terminal and click enter: streamlit run main.py