Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
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
Archives
Today
Total
05-17 00:00
관리 메뉴

nomad-programmer

[Conda/Jupyter LAB] 설치한 Extensions 본문

Conda/Jupyter LAB

[Conda/Jupyter LAB] 설치한 Extensions

scii 2019. 11. 28. 18:51
// font
jupyter labextension install @deathbeds/jupyterlab-fonts --no-build
jupyter labextension install @deathbeds/jupyterlab-font-anonymous-pro --no-build
jupyter labextension install @deathbeds/jupyterlab-font-dejavu-sans-mono --no-build
jupyter labextension install @deathbeds/jupyterlab-font-fira-code --no-build

// cell tags
jupyter labextension install @jupyterlab/celltags --no-build

// github
jupyter labextension install @jupyterlab/github --no-build

// google drive
jupyter labextension install @jupyterlab/google-drive --no-build

// shortcut ui
jupyter labextension install @jupyterlab/shortcutui --no-build

// python byte code
jupyter labextension install jupyterlab-python-bytecode --no-build

// file tree
jupyter labextension install jupyterlab_filetree --no-build

// vim
jupyter labextension install @axlair/jupyterlab_vim --no-build

// go to definition
jupyter labextension install @krassowski/jupyterlab_go_to_definition --no-build

// horizon theme
jupyter labextension install @mohirio/jupyterlab-horizon-theme --no-build

// material darker theme
jupyter labextension install @oriolmirosa/jupyterlab_materialdarker --no-build

// darcula theme
jupyter labextension install @telamonian/theme-darcula --no-build

// code formatter
conda install -c conda-forge black
pip install -y yapf 
pip install -y --upgrade autopep8
jupyter labextension install @ryantam626/jupyterlab_code_formatter --no-build
pip install -y jupyterlab_code_formatter
jupyter serverextension enable --py jupyterlab_code_formatter

// output auto scroll
jupyter labextension install @wallneradam/output_auto_scroll --no-build

// dbdime (Jupyter Notebook Diff and Merge tools)
https://github.com/jupyter/nbdime
pip install nbdime

// git
pip install --upgrade jupyterlab-git --no-build

// jupyterlab extensions 빌드
jupyter lab build

 

extensions 설치한 모습

Comments