[anaconda] 설치 후 설정

# 아나콘다 프롬프트(관리자 권한실행)
# 패키지 업데이트
base> conda update -n base conda

 

# 현재 Platform 정보확인

base> conda info -> platform : win-64

# 가상환경 목록 확인
base> conda env list
base> conda info --envs

#  32bit 가상환경 생성

base > set CONDA_FORCE_32BIT = 1

base > conda info > platform : win-32
base > conda create -n py37_32 python=3.7

 

# 가상환경 활성화
base> conda activate py37_32  
base> conda deactivate py37_32 (비활성화시)

 

#  64bit 가상환경 생성

base> set CONDA_FORCE_32BIT = 0

base> conda create -n py37_64 python=3.7

 

# 가상환경 접속 후 주피터 노트북 설치
py37_32> pip install ipykernel

# 가상환경 kernel 추가
py37_32>  python -m ipykernel install --user --name py37_32

py37_64>  python -m ipykernel install --user --name py37_64

# 설치확인
jupyter notebook