Anaconda Install & Settings
- 환경 : Windows 10 Pro
1. 설치
https://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. Anaconda Prompt 실행 (버전확인)
conda --version
3. 업데이트
conda update conda
4. python 버전 고정 (3.7)
tmp로 생성
conda create -n tmp python=3.7
5. 프롬프트 세팅
4에서 만든 경로(?)로 하면 되는데, os에 따라 명령어가 다르니 유의
conda activate tmp
6. 추가 모듈 설치
* pip 버전 확인 (conda 명령어로 설치 가능) : 업데이트 한 상태라면 pip도 그 시점 최신 버전
모듈 설치 (한번에 붙여넣기 하면 자동으로 쭉쭉 설치됩니다)
pip install jupyter
pip install matplotlib
pip install pandas
pip install sklearn
pip install xlrd
pip install seaborn
일단 여기까지 ~
'Language > Python' 카테고리의 다른 글
[Tensorflow] import error, 텐서플로우 임폴트시 발생하는 에러 (0) | 2021.09.25 |
---|---|
[Python 3.8.7] Windows10에 파이썬 설치 (0) | 2021.01.21 |