본문 바로가기

Study/python

[python] jupyter not implemented 에러

반응형

https://github.com/jupyter/notebook/issues/5094

 

NotImplemented Error Jupyter Notebook · Issue #5094 · jupyter/notebook

i had currently install jupyter notebook for python3.8 by using this command pip install jupyter everything looks fine but when i try to open notebook via jupyter notebook it gives me this error, T...

github.com

 

jupyter notebook

jupyter lab

등등 다 에러 나면서 켜지지를 않았다.

 

tools\miniconda3\envs\deeplearning\lib\site-packages\tornado\platform\asyncio.py 이 파일에 아래 코드를 넣어주니 해결되었다.

import sys

if sys.platform == 'win32':
    import asyncio
    asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

'Study > python' 카테고리의 다른 글

[python] conda 설치, 설정, 가상환경만들기  (0) 2020.01.20
[python] virtualenv 설치  (0) 2020.01.20