일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Data Structure
- git
- C언어 포인터
- jupyter lab
- Unity
- jupyter
- 깃
- github
- 도커
- 포인터
- docker
- Algorithm
- c언어
- 유니티
- HTML
- c# winform
- Houdini
- c# 추상 클래스
- 플러터
- 구조체
- Python
- C++
- c# 윈폼
- vim
- 다트 언어
- C# delegate
- Flutter
- dart 언어
- gitlab
- c#
Archives
- Today
- Total
nomad-programmer
[Conda/Jupyter LAB] 설치한 Extensions 본문
// 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
'Conda > Jupyter LAB' 카테고리의 다른 글
[Jupyter LAB] 로그인 시 자동 시작 (OSX) (0) | 2019.12.14 |
---|---|
[Jupyter LAB] 로그인 시 자동 시작 (CentOS8) (0) | 2019.12.02 |
[Jupyter LAB] setup (0) | 2019.12.02 |
[Conda/Jupyter LAB] 로그인 시 자동 시작 (Windows10) (0) | 2019.11.28 |
[Conda/Jupyter LAB] 가상환경 만든 후 커널 생성 및 삭제 (0) | 2019.11.28 |
Comments