-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJupyterLab.txt
More file actions
45 lines (38 loc) · 1.15 KB
/
Copy pathJupyterLab.txt
File metadata and controls
45 lines (38 loc) · 1.15 KB
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
45
# JupyterLab IDE [[{jupyterlab]]
<https://jupyterlab.readthedocs.io/en/stable/>
<https://github.com/tldr-pages/tldr/blob/master/pages/common/jupyter.md> [TODO]
<https://github.com/tldr-pages/tldr/blob/master/pages/common/jupytext.md> [TODO]
- Python IDE + Python Notebooks
- Instalation as local pipenv project :
STEP 1) Create Pipfile
$ mkdir myProject && cd myProject
$ vim Pipfile
|[ [source]]
|name = "pypi"
|url = "https://pypi.org/simple"
|verify_ssl = true
|
|[dev-packages]
|
|[packages]
|scipy = "*"
|matplotlib = "*"
|scikit-learn = "*"
|jupyterlab = "*"
|pandas = "*"
|
|[requires]
|python_version = "3.7"
STEP 2) Install dependencies
$ pipenv install # ← Install all packages and dependencies.
DAILY-USE)
$ cd .../myProject
$ pipenv shell # ← Activate environment
$ jupyter lab 1>jupyter.log 2>&1 & # ← http://localhost:8888/lab/workspaces/
[[{PM.low_code]]
## Voilà: notebook to apps/dashboard
* <https://github.com/voila-dashboards/voila>
## voila-dashboards: turns Jupyter notebooks into standalone web apps
[[PM.low_code}]]
<https://voila-gallery.org> [[}]]
[[jupyterlab}]]