[Environment] Virtualbox를 사용하여 Windows 컴퓨터에 Deep Learning 환경을 구축해 보았습니다.

Virtualbox를 사용하여 Windows 컴퓨터에 우분투 환경을 만들고 chainer와 tensorflow를 설치하는 절차를 썼습니다.

virtualbox



htps //w w.ゃぃr 짠 l보 x. 오 rg / uuki / Down ぉ ds


ubuntu14.04LTS



다운로드



htps //w w. 어쩌면 x. jp / 네 ws / 우분츠 1404


ubuntu14.04 LTS 설치


  • virtualbox 시작
  • 신규에서 가상 머신 생성


  • ISO를 드라이브로 설정
    설정, 저장 CD 마크의 빈 공간을 선택하고 오른쪽에 나온 CD 마크를 눌러 다운로드 한 ISO 파일을 지정합니다.

    지정 전

    지정 후

  • 시작을 눌러 가상 컴퓨터를 시작합니다.
  • ubuntu 설치
    설치 화면이므로 "ubuntu 설치"를 눌러 설치하십시오

  • 아나콘다



    anaconda를 아래에서 다운로드하여 설치합니다.


    bash
    user@mypc:~/work/Environment$ bash Anaconda2-2.5.0-Linux-x86_64.sh 
    
    Welcome to Anaconda2 2.5.0 (by Continuum Analytics, Inc.)
    
    In order to continue the installation process, please review the license
    agreement.
    Please, press ENTER to continue
    >>> 
    

    bash
    cryptography
    A Python library which exposes cryptographic recipes and primitives.
    
    Do you approve the license terms? [yes|no]
    >>> yes
    
    

    bash
      - Press ENTER to confirm the location
      - Press CTRL-C to abort the installation
      - Or specify a different location below
    
    [/home/user/anaconda2] >>> 
    

    bash
    installation finished.
    Do you wish the installer to prepend the Anaconda2 install location
    to PATH in your /home/user/.bashrc ? [yes|no]
    [no] >>> yes
    

    콘다 업데이트



    bash
    conda update conda
    conda update anaconda
    

    chainer



    chainer 설치

    '/home/user/anaconda2/bin'에 path가 다니지 않는 경우는 아래와 같이 해 주면 됩니다.

    bash
    user@mypc:~/work/Environment$ source ~/.bashrc
    

    그리고는 가상 환경을 만들어 install 하는 것입니다.
    자세한 내용은 여기을 참조하십시오.

    bash
    user@mypc:~/work/Environment$ conda create -n chainer python=2.7 anaconda
    user@mypc:~/work/Environment$ source activate chainer
    (chainer)user@mypc:~/work/Environment$ pip install chainer
    

    tensorflow



    가상 환경을 만들고 install하면 됩니다.
    자세한 내용은 여기을 참조하십시오.

    bash
    user@mypc:~/work/Environment$ conda create -n tensorflow python=2.7 anaconda
    user@mypc:~/work/Environment$ source activate tensorflow
    (tensorflow)user@mypc:~$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
    

    좋은 웹페이지 즐겨찾기