Skip to content
GitLab
Explore
Sign in
Admin message
A maintenance window for GitLab is scheduled on Wednesday, September 23rd, from 08:00 to 13:00.
Changes
Page history
Update Jupyter Notebooks
authored
Oct 13, 2022
by
Gianluca Chiozzi
Hide whitespace changes
Inline
Side-by-side
KnowledgeBase/Jupyter-Notebooks.md
View page @
c84dad74
...
@@ -60,6 +60,17 @@ In this case:
...
@@ -60,6 +60,17 @@ In this case:
```
```
http://elthlccd23:8888/?token=019b2a3cc9f8610b88d7d6b40976844fea310cbc4469ae34
http://elthlccd23:8888/?token=019b2a3cc9f8610b88d7d6b40976844fea310cbc4469ae34
```
```
# Strip output from notebooks
If you just want to cleanup the output of a notebook or if the output is too big to be archived in Git, you can cleanup the output.
From the web UI you can use the menu:
```
cell -> all output -> clear
```
On the command line:
```
> jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace <notebook.ipynb>
```