카테고리 없음
EC2 리눅스에서 아나콘다 설치 방법
zzuvely
2022. 5. 23. 18:09
1. 아나콘다 웹사이트에서 링크 복사
https://www.anaconda.com/products/distribution
Anaconda | Anaconda Distribution
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
2. wget 프로그램으로 설치
$ wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
$ sh Anaconda3-2022.05-Linux-x86_64.sh
3. putty 다시시작
4. 가상환경 만들기 ( 필요한 라이브러리 설치)
$ conda create -n [ 가상환경 이름 ] python=3.7 numpy scipy matplotlib ipython scikit-learn pandas pillow jupyter seaborn
5. 가상환경 사용
// 가상환경 리스트 확인
$ conda env list
//원하는 가상 환경으로 이동
$ conda activate streamlit3.7