본문 바로가기

C.E/Python(DeepLearning)

ubuntu anaconda install (우분투 아나콘다 설치)

요즘 영어연습을 한다고 짧은 영어들을 번역해보고 있다. (...)


Ubuntu 14.04를 사용하고 있지만, 아마 다른 버전 또는 다른 리눅스 계열 컴퓨터에서도 설치가 가능할 것이다.

I used ubuntu 14.04. Maybe possible installing on another ubuntu version and the other Linux O/S computer.


내가 아나콘다를 설치하는 이유는 Jupyter notebook에 python2 / 3를 추가하여 동시에 사용하기 위해서다.

Why install anaconda? Because I want to add python2 and 3 on jupyter notebook.






1. 주피터 노트북에 설치되어 있는 kernel을 확인한다.

Check kernel on the jupyter notebook.


$ jupyter kernelspec list



나는 파이썬3가 설치되어 있다

I'm installed python3 on the jupyter notebook.






2. 아나콘다를 설치한다.

Install anaconda



2-1. 32 비트 버전

32 bits version

$ wget https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda-2.3.0-Linux-x86.sh

$ bash Anaconda-2.3.0-Linux-x86.sh


2-1. 64 비트 버전

64 bits version

$ wget https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda-2.3.0-Linux-x86_64.sh

$ bash Anaconda-2.3.0-Linux-x86_64.sh



+참고로 비트 확인은 이렇게 한다.

Tip. Ubuntu bits check

$ uname -i






3. 그리고 터미널을 한 번 종료 한 후 다시 터미널을 켠다.

Close on the terminal and open the terminal.






4. 아나콘다 업데이트를 실행한다.

Update to anaconda

$ conda update conda







이걸로 아나콘다 설치 끝!

Finish install anaconda.