conda install jupyter
입력으로 설치Prooceed ([y]/n)?
이라고 물어보는데 y
를 입력해주자jupyter notebook
입력 후 크롬으로 실행workspace
폴더를 만들어 그 안에서 실행하였다.New
에서 Python 3
선택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
더 여러가지 해결방안들이 올라와 있었는데 대부분 비슷한거 같다. ( 사실 여기 써놓은 것도 다는 안해봤다. ) 일단은 내일 해결해 보도록 하자...
> 해결 완료!! <