New Script: Jupyter Notebook (#2561)

* Add jupyter notebook script, install script and json

* Add jupyter notebook script, install script and json

* Update jupyternotebook.sh

* Update jupyternotebook-install.sh

* Update jupyternotebook.sh

* Update jupyternotebook-install.sh

* Update jupyternotebook.json

---------

Co-authored-by: Dat Ta <datta@macmini.homeserver.local>
Co-authored-by: CanbiZ <47820557+MickLesk@users.noreply.github.com>
This commit is contained in:
Dave 2025-02-24 03:10:43 -05:00 committed by GitHub
parent 0084169c02
commit 2dbd03b74c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 133 additions and 0 deletions

39
json/jupyternotebook.json Normal file
View file

@ -0,0 +1,39 @@
{
"name": "jupyter-notebook",
"slug": "jupyter-notebook",
"categories": [
20
],
"date_created": "2025-02-24",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 8888,
"documentation": "https://jupyter-notebook.readthedocs.io/en/stable/",
"website": "https://jupyter.org/",
"logo": "https://jupyter.org/assets/nav_logo.svg",
"description": "The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text. Uses include: data cleaning and transformation, numerical simulation, statistical modeling, data visualization, machine learning, and much more.",
"install_methods": [
{
"type": "default",
"script": "ct/jupyternotebook.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 4,
"os": "ubuntu",
"version": "24.04"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "To get the token to access the Jupyter Notebook, run the following command: jupyter notebook list.",
"type": "info"
}
]
}