generated from KU-BIG/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Anaconda 환경 세팅
jaewonalive edited this page Sep 18, 2020
·
2 revisions
$ cd /home/[username]
예시
$ cd /home/yeeun.song.conda
반드시 conda용 계정으로 로그인한 상태에서 환경을 세팅하셔야 합니다.
ubuntu 계정의 pip.conf 에 있는 정상적인 미러 서버를 copy하는 command입니다.
pip command 사용 시 속도가 느린 문제 해결을 위해서 설정해 놓는 command입니다.
$ cp -r /home/ubuntu/.pip /home/[username]
예시
$ cp -r /home/ubuntu/.pip /home/david.kim
$ wget https://repo.continuum.io/archive/Anaconda3-5.0.0.1-Linux-x86_64.sh
$ sh Anaconda3-5.0.0.1-Linux-x86_64.sh
installer를 실행시킨 후 몇 가지 설정을 하셔야 합니다.
- license term accept
yes라고 입력하시면 됩니다.
//licence term accept
Do you accept the license terms? [yes|no]
[no] > > >
Please answer ' yes' or ' no' :'
> > > yes
- install location 설정
anaconda에서 설치하려는 default location으로 설정하시면 됩니다.
ENTER를 누르시면 됩니다.
// install location 설정
Anaconda3 will now be installed into this location:
/home/[username]/anaconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/home/[username]/anaconda3] >>>
- 패스 설정
모든 패키지가 설치 완료되면 path를 설정하는 과정이 나옵니다.
위 질문이 나오면 yes라고 입력하시면 됩니다.
yes 미입력시 conda command 인식이 불가능합니다.
// path 설정
Do you wish the installer to prepend the Anaconda3 install location
to PATH in your /root/.bashrc ? [yes|no]
[no] > > > yes
계정 로그아웃 후 다시 재접속해서 확인. PATH yes로 미설정 시 conda command 인식 불가능
[conda 설치 계정]@[서버 이름]:~/anaconda3 $conda list
설치된 패키지가 나열되면 성공적으로 설치 완료입니다.
2.installer download에 나온 링크를 그대로 사용해 설치할 경우 older version이 설치되므로 아래 커맨드를 사용해 아나콘다를 업그레이드 해줍니다.
conda update conda