From d510e05753ef36860c2241a210cebdee41228409 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Be=C5=82czyk?= Date: Thu, 24 Aug 2023 10:20:46 +0200 Subject: [PATCH] Update components-api.md --- content/library/components/components-api.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/library/components/components-api.md b/content/library/components/components-api.md index 66ea84b4e..920a88dfd 100644 --- a/content/library/components/components-api.md +++ b/content/library/components/components-api.md @@ -124,6 +124,7 @@ Clone the [component-template GitHub repo](https://github.com/streamlit/componen # React template cd template . venv/bin/activate # or similar to activate the venv/conda environment where Streamlit is installed + pip install -e . # install template as editable package streamlit run my_component/example.py # run the example # or @@ -131,6 +132,7 @@ Clone the [component-template GitHub repo](https://github.com/streamlit/componen # TypeScript-only template cd template-reactless . venv/bin/activate # or similar to activate the venv/conda environment where Streamlit is installed + pip install -e . # install template as editable package streamlit run my_component/example.py # run the example ```