theano 설치법 :: 딥러닝 기초 - mindscale
Skip to content

theano 설치법

Mac

1) terminal을 실행합니다

2) 다음 명령으로 theano를 설치합니다.

pip install theano

윈도

1) TDM GCC를 다운받아 설치합니다

2) cmd를 실행합니다

3) Python 3.4를 사용하는 아나콘다 가상환경을 만듭니다.

conda create -n theano_env python=3.4

4) 아나콘다 가상환경을 활성화합니다.

activate theano_env

5) 다음 명령어로 theano에 필요한 패키지를 설치합니다.

conda install mingw libpython numpy scipy

6) 다음 명령어로 theano를 설치합니다.

pip install theano