본문으로 바로가기

jupyter notebook, markdown

category AIFFEL 대전/Fundamentals 2020. 12. 31. 22:49

주피터 노트북은 여러 번 써본 적 있으니 잘 몰랐던 부분만 정리

 

1.conda 가상환경 "venv" - jupyter notebook 연결

 1)jupyter notebook 실행, jupyter notebook

 2)가상환경 실행, conda activate "venv"

 3)1),2)를 연결, python -m ipykernel install --user --name venv --display-name 보여지기원하는가상환경이름

 4)jupyter notebook 재실행

 

2.셀 변환

 1)markdown 형식으로 변환 : esc + m

 2)code cell 형식으로 변환 : esc + y

 

3.단축키

 1)셀 실행 : shift + enter

 2)셀 삭제 : esc + x

 3)셀 삭제 취소 : esc + z

 4)위 셀 추가 : esc + a

 4)아래 셀 추가 : esc + b

 

4.markdown

 1) 제목달기 : # 개수로 폰트크기 설정

 2) 리스트 : 1)2)3)/-/*/+

 3) 구분선 : ---

 4) 링크 : [이름](url) : [구글](https://google.com)

 5) bold : *AAA*

      italic : _AAA_

      취소선 : ~AAA~

  6) 코드블럭 : 

 '''

AAA

'''

 

>> AAA

 

 7) 줄바꿈 : 문장 마지막 3칸 이상 띄어쓰기, THIS IS A SENTENCE___

 

 8) 이미지 삽입

   - 기본 : ![Alt text](path of image)

   - 사이즈조절용 : <img src="path/image.jpg" width="999px" height="333px"></img><br/>