반응형
#가상환경 만들기및 실행
conda create -n jupiter-env python
# To activate this environment, use
#
# $ conda activate jupiter-env
#
# To deactivate an active environment, use
#
# $ conda deactivate
conda info --env
# conda environments:
#
base C:\ProgramData\Anaconda3
jupiter-env * C:\ProgramData\Anaconda3\envs\jupiter-env
main C:\ProgramData\Anaconda3\envs\main
(jupiter-env) D:\python\jupyter_data> conda install -y jupyter
(jupiter-env) D:\python\jupyter_data> conda install -y bokeh
(jupiter-env) D:\python\jupyter_data> conda install -y pandas
(jupiter-env) D:\python\jupyter_data> conda install -y matplotlib
(jupiter-env) D:\python\jupyter_data>mkdir notebook
(jupiter-env) D:\python\jupyter_data>cd notebook
# jupyter notebook 실행
(jupiter-env) D:\python\jupyter_data\notebook>jupyter notebook
VScode :
이름: Jupyter
ID: ms-toolsai.jupyter
버전: 2022.2.1030672458
게시자: Microsoft VS Marketplace
링크: https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter
Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.
# Config 파일 생성 - Jupyter Notebook의 기본 설정
(jupiter-env) D:\python\jupyter_data\notebook>jupyter notebook --generate-config
Writing default config to: C:\Users\pydata\.jupyter\jupyter_notebook_config.py
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[python] PyScript - Run Python in Your HTML (0) | 2022.05.25 |
---|---|
[python] 초보자를 위한 파이썬 300제 (0) | 2022.04.12 |
[python] 초보자를 위한 파이썬 300제 (0) | 2022.04.07 |
[python] dictionary 를 json 으로 변환 (0) | 2022.04.07 |
[python] pandas 결과값을 csv 파일 형식으로 누적해서 저장하기: to_csv (0) | 2022.04.05 |