Spaces:
Sleeping
Sleeping
File size: 1,059 Bytes
80e4b8a 4096d6d 80e4b8a 4096d6d 80e4b8a 4096d6d 80e4b8a 4096d6d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
---
title: Streamlit Template (Shadi's Class)
emoji: 🏢
colorFrom: blue
colorTo: gray
sdk: streamlit
sdk_version: 1.39.0
app_file: Hello.py
pinned: false
license: mit
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
# Install what you need for this notebook
It is recommended you install into a conda environment:
```
conda create -n DataVizClass python=3.10
conda activate DataVizClass
```
Then you can install the correct packages. If you have downloaded the requirements document you can install directly with:
```
pip install -r /path/to/requirements.txt
```
Or you can install one by one with:
```
pip install streamlit==1.39.0 altair numpy pandas matplotlib
```
To work with the VSCode interface, be sure that `jupyter` is also installed:
```
pip install jupyter
```
Or you can install with `conda`.
Note that the package [Streamlit](https://streamlit.io/) that we will be working with requires we use Python scripts, so JupyterLab and/or Jupyter Notebooks won't work for this process. |