Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marieroald/streamlit-pyladies
https://github.com/marieroald/streamlit-pyladies
Last synced: about 13 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/marieroald/streamlit-pyladies
- Owner: MarieRoald
- Created: 2024-05-13T04:39:38.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-23T05:53:58.000Z (5 months ago)
- Last Synced: 2024-06-23T07:00:51.383Z (5 months ago)
- Language: Jupyter Notebook
- Size: 1.61 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Make interactive data applications with Streamlit
## PyLadies Oslo meetup - 2024-06-12Here are the materials for the Streamlit part of the PyLadies Oslo meetup in June 2024.
## Follow along
You can download and extract [this](https://github.com/MarieRoald/streamlit-pyladies/archive/refs/heads/start-template.zip) zip file to follow along the presentation.
Once you have downloaded it, you should extract it and create a new virtual environment.
To create a virtual environment, open a terminal emulator (e.g. Powershell on Windows or Zsh on Mac) and run```raw
python -m venv .venv
```(you may need to replace `python` with `python3` on Linux or `py` on Windows).
Once you have created the virtual environment, you can activate it with**Mac/Linux:**
```raw
source .venv/bin/activate
```**Windows:**
```raw
.venv\Scripts\activate
```Next, you can install the requirements (`streamlit`, `dhlab`, `plotly` and `jupyter`):
```raw
pip install -r requirements.txt
```