1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- pip install jupyterthemes
- jt -t chesterish -N -kl -T -cellw 100% -f meslo
- jt -t grade3 -N -kl -T -cellw 100% -f meslo
fuser -k 8888/tcp : kill jupyter notebook on server port 8888
- add following to \~/.jupyter/nbconfig/notebook.json to disable "autoCloseBrackets"
"CodeCell": {
"cm_config": {
"autoCloseBrackets": false
}
},
|