Linux에서 준비하기

이 도움말은 이런 주제들에 대해서 다뤄요.

  1. 설치 환경
  2. 서버 저장소 파일 다운로드하기
  3. 빌드(build) 환경 구축하기

설치 환경

이 명령어들은 가장 많이 쓰이는 리눅스 배포판(distribution)에서 사용 가능해요.

자기의 시스템에 맞는 명령어를 터미널에서 실행하세요.

Debian/Ubuntu
sudo apt-get install python3 python3-pip subversion
Redhat/Fedora
sudo yum install python python-pip
Arch Linux
sudo pacman -S python python-pip subversion

서버 저장소 파일 다운로드하기

이 명령어로 블렌더 사용설명서의 저장소에 접속하세요.

cd ~
svn checkout https://svn.blender.org/svnroot/bf-manual/trunk/blender_docs

그러면 저장소 파일들이 다운로드될 거예요. 인터넷이 느리면 몇 분이 걸릴 수도 있어요.

빌드(build) 환경 구축하기

  • 터미널 창을 여세요.

  • 방금 SVN checkout했던 blender_docs 폴더를 찾아가세요.

    cd ~/blender_docs
    
  • Inside that folder is a file called requirements.txt which contains a list of all the dependencies we need. To install these dependencies, we can use the pip3 command:

    sudo pip3 install -r requirements.txt
    

주석

Every now and then you may want to make sure your dependencies are up to date using:

sudo pip3 install -r requirements.txt --upgrade

다음 단계는 빌드(build)하기 에 있어요.