Anaconda(2)
-
[anaconda] 가상환경 (64bit에서 32bit)
▶ 64bit가 설치된 상황에서 32bit 가상환경 설정 방법 anaconda prompt 실행 버전 확인 python --version 아나콘다 32bit 설치 set conda_force_32bit=1 버전 값 입력 conda create -n py38_32 python=3.8.5 anaconda ▶ 설정 후 주피터 실행 방법 anaconda prompt 실행 32bit 가상환경으로 도입 conda activate py38_32 주피터 실행 jupyter notebook bit 확인 방법-1 (urs창 확인) - localhost:8888 : 32bit - localhost:8889 : 64bit bit 확인 방법-2 (주피터에서 확인) >>> import platform >>> print(platf..
2021.05.03 -
[Python] 주피터 노트북(Jupyter Notebook) 설치 및 단축키
▶ 설치 방법 1. 아나콘다 홈페이지 접속 www.anaconda.com/products/individual Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 2. 하단 인스톨 클릭 (윈도우 체재, 버전에 맞게) 3. 설치 - Install for : All Users - Check : Add Anaconda3 to the system PATH environment variable ▶ 단축키 Enter : 에디트 모드로 변경 Esc..
2021.04.26