Jupyter notebook에서 코드 작성시 줄바꿈 되지 않고 일렬로 쭉 늘어져 불편할 경우 아래와 같이 추가하면 된다.
C:\Users\사용자명\.jupyter\nbconfig\notebook.json
만약 nbconfig 폴더와 notebook.json 파일이 없으면 만든다.
{
"MarkdownCell": {
"cm_config": {
"lineWrapping": true
}
},
"CodeCell": {
"cm_config": {
"lineWrapping": true
}
}
}
작성후 Jupyter notebook을 재실행 한다.
'Python' 카테고리의 다른 글
Centos 8 python3.6 삭제 하고 python3.9 설치 (0) | 2022.03.22 |
---|---|
윈도우에서 python selenium 사용하여 네이버 까페 조회수, 댓글수 가져오기 (0) | 2022.02.11 |
Django 참조무결성 무시하고 입력하기 (0) | 2021.08.25 |
Python 사용하여 Youtube 영상에서 MP3 추출하기 (CentOS 8) (0) | 2020.07.30 |
jupyter-notebook python3.8 notimplementederror (0) | 2020.01.13 |