AI
[AI / 데이터 분석] Anaconda 설치 및 가상환경 생성
myo-kyeong
2023. 5. 8. 19:12
728x90
반응형
Anaconda 다운로드
Free Download | Anaconda
Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine.
www.anaconda.com
가상 환경 생성
[Anaconda prompt]
# "tf210'이라는 이름의 가상 환경 생성, Python 3.10 버전을 사용하도록 설정
conda create --name tf210 python=3.10
# 라이브러리 리스트 확인
conda list
# 필요한 라이브러리 설치
conda install scikit-learn
conda install matplotlib
conda install numpy
conda install pandas
conda install tensorflow
가상 환경 확인
[Anaconda prompt]
# 가상환경 리스트 확인
conda env list
# 'tf210' 가상환경 진입
activate tf201
가상 환경 지우기
[Anaconda prompt]
conda remove --name tf210 --all
728x90
반응형