Jupyter와 싸우기 (1) ( 500 : Internal Server Error ) [2023.04.05]

torch·2023년 4월 5일
0

파이썬 잠깐

목록 보기
1/5

Jupyter 실행 방법

  1. Miniconda 설치
    > 설치 링크 <

  2. Anaconda Prompt (miniconda3) 실행


  3. conda install jupyter 입력으로 설치
    무슨 막대기가 돌아간다.. 중간에 Prooceed ([y]/n)? 이라고 물어보는데 y를 입력해주자

  4. jupyter notebook 입력 후 크롬으로 실행
    workspace 폴더를 만들어 그 안에서 실행하였다.

  5. 우측 New 에서 Python 3 선택


  6. ...?

500 : Internal Server Error


jupyter notebook 500 : Internal Server Error 를 구글링 해보았다. 가장 먼저 나오는 답변은

pip install --upgrade jupyter

근데 안된다. 스택 오버플로우 링크가 있어서 들어가 보았다. 댓글에 보이는 방법들을 시도해본다. 대충 긁어오자면,

pip install --upgrade jupyterhub
pip install --upgrade --user nbconvert
conda install nbconvert==5.4.1
pip install --upgrade nbconvert
sudo pip install --upgrade "ipython[all]"
conda install -c conda-forge jupyter_contrib_nbextensions
conda update --all
jupyter troubleshoot | grep jupyter | grep /
conda update jupyter

더 여러가지 해결방안들이 올라와 있었는데 대부분 비슷한거 같다. ( 사실 여기 써놓은 것도 다는 안해봤다. ) 일단은 내일 해결해 보도록 하자...


> 해결 완료!! <

profile
비전공 개발 공부 이야기

0개의 댓글