2019/03 3

[JUPYTER] 주피터 노트북 실행 시 500 번 오류 (500: Internal Server Error)

Jupyter 노트북을 실행해서 notebook를 선택하니 아래와 같은 오류가 발생하였다. 에러 로그를 보니 아래와 같은 문구가 있었다.AttributeError: module 'tornado.web' has no attribute 'asynchronous'위와 같은 오류 메세지가 있다. tornado.web 모듈의 문제이다. 해당 문제를 처리하는 방법은 stackoverflow에 나와있다. Python 만 설치한 경우에는 pip install --upgrade nbconvertAnaconda 환경인 경우에는condcon upgrade nbconvert 와 같이 수행후 주피터 노트북을 재실행하면 된다.Ref. https://stackoverflow.com/questions/55013206/how-can-..

Study/Etc. 2019.03.26

[anaconda] anaconda 환경에서 jupyter 실행 시 kernel 목록에 env 목록이 보이지 않는 경우

아나콘다(anaconda) 환경에서 쥬피터(jupyter) 실행 시 커널(kernel) 목록에 conda enviroment 목록이 보이지 않는 경우 activate root 로 활성화conda install nb_conda_kernels대부분 이걸 설치했을 시점에 kernel 목록이 보이나 안보이는 경우 원하는 환경을 아래 코드로 추가python -m ipykernel install --user --name [env이름] --display-name "쥬피터커널이름"ex) conda env 이름이 "aistudy" 이고 jupyter에 kenel 이름으로 "Python 3.6 (aistudy)" 추가하려는 경우ex) python -m ipykernel install --user --name aistudy..

Study/Etc. 2019.03.05

[GIT] GIT 내용 정리 (지옥에서 온 GIT on 생활코딩)

https://opentutorials.org/course/2708code -> stage (commit 전 대기) -> repository (commit 후)https://git-scm.com/https://git-scm.com/book/ko/v2한글 매뉴얼 지원 프로젝트(레파지토리) 폴더 생성git initgit statusgit add [관리할파일명] git config --global user.name [유저이름]git config --global user.email [이메일]이걸 하지 않고 진행하는 경우 --global to set the identity only in this repository 매세지가 보이게됨 git commit만약 윈도우10에서 git commit 실행시 vim으로 실행 ..

Study/Etc. 2019.03.04