diff --git a/Streamlit/streamlit_tutorial.ipynb b/Streamlit/streamlit_tutorial.ipynb index a560fcae29583436d8e5f16cf41a8e63657c1d91..49b010dfbaaf3b493b8f6d2a49ca660105c3559c 100644 --- a/Streamlit/streamlit_tutorial.ipynb +++ b/Streamlit/streamlit_tutorial.ipynb @@ -23,6 +23,15 @@ "Streamlit is an open-source Python library that can create web applications for data science concepts including machine learning." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### When running streamlit there are two possible installation methods\n", + "1. Installation on your own Computer\n", + "2. Installation on Shared Computer Cluster" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -74,6 +83,29 @@ "! streamlit run streamlit_tutorial.py" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Installation on Shared Computer Cluster\n", + "In your terminal type and run each of these commands\n", + "\n", + "```bash\n", + "module load Anaconda/3\n", + "conda activate base\n", + "pip install streamlit\n", + "```\n", + "\n", + "\n", + "To check if this worked properly, run:\n", + "\n", + "```bash\n", + "streamlit hello\n", + "```\n", + "\n", + "This command should open the Streamlit Hello application in your browser." + ] + }, { "cell_type": "markdown", "metadata": {},