Jupyter Notebook 설치
pip install ipykernel
python -m ipykernel install --user --name=(conda 가상환경 이름)
pip install ipykernel python -m ipykernel install --user --name=(conda 가상환경 이름)
jupyter notebook을 설치하고 가상환경 kernel을 추가한다.
c:/kd1/ws_python/notebook/core 로 디렉터리를 생성한다.
A. c:/kd1/jupyter.cmd OR jupyter.bat
C:
CD\
CD kd1
CD ws_python
REM Jupyter Notebook의 root 폴더
CD notebook
REM 커널 활성화
call activate sole-ai
REM 편집기 실행
call Jupyter Notebook
C:
CD\
CD kd1
CD ws_python
REM Jupyter Notebook의 root 폴더
CD notebook
REM 커널 활성화
call activate sole-ai
REM 편집기 실행
call Jupyter Notebook
jupyter.cmd OR jupyter.bat을 실행시키면 jupyter notebook 브라우저가 나와야 한다.
a. bug
File "c:\python\anaconda 3_64\envs\sole-air\lib\site-packages\jupyter_core\command.py", line 125, in _jupyter_abspath 'Jupyter command `{}` not found.'.format(jupyter_subcommand) Exception: Jupyter command `jupyter-notebook` not found.
File "c:\python\anaconda 3_64\envs\sole-air\lib\site-packages\jupyter_core\command.py", line 125, in _jupyter_abspath 'Jupyter command `{}` not found.'.format(jupyter_subcommand) Exception: Jupyter command `jupyter-notebook` not found.
이런식으로 jupyter notebook을 찾을 수 없다고 뜬다.
conda install jupyter
이렇게 주피터 노트북을 설치하면 해결된다.
Ghost