기계적 인조 인간

데비안 10에 아나콘다를 설치하는 방법

ì•„ì ´ìŠ¤í ¬ë¦¼ ì¹¼ë ¼í ¼ ìŠ¬ë ¼ì „ 액체괴물 만들기!! í 르는 ì  í†  ì•¡ê´´ ìŠ¬ë ¼ì „ 놀ì

ì•„ì ´ìŠ¤í ¬ë¦¼ ì¹¼ë ¼í ¼ ìŠ¬ë ¼ì „ 액체괴물 만들기!! í 르는 ì  í†  ì•¡ê´´ ìŠ¬ë ¼ì „ 놀ì

차례:

Anonim

Anaconda는 가장 널리 사용되는 Python / R 데이터 과학 및 기계 학습 플랫폼입니다. 대규모 데이터 처리, 예측 분석 및 과학 컴퓨팅에 사용됩니다.

Anaconda 배포판에는 1, 500 개 이상의 오픈 소스 데이터 패키지가 제공됩니다. 또한 conda 명령 줄 도구와 Anaconda Navigator라는 데스크탑 그래픽 사용자 인터페이스가 포함되어 있습니다.

이 튜토리얼에서는 데비안 10에서 Anaconda Python Distribution을 다운로드하고 설치하는 과정을 안내합니다.

아나콘다 설치

이 기사를 쓰는 시점에서 최신 안정 버전의 Anaconda는 2019.10 버전입니다. Anaconda 설치 프로그램 스크립트를 다운로드하기 전에 Anaconda 다운로드 페이지를 방문하여 다운로드 할 수있는 Anaconda for Python 3의 새 버전이 있는지 확인하십시오.

스크립트를 실행하여 Anaconda 설치 프로세스를 시작하십시오.

sh /tmp/Anaconda3-2019.10-Linux-x86_64.sh

Welcome to Anaconda3 2019.10 In order to continue the installation process, please review the license agreement. Please, press ENTER to continue >>>

ENTER 를 눌러 계속 한 다음 SPACE 를 눌러 라이센스를 스크롤하십시오. 라이센스 검토가 완료되면 라이센스 조건에 동의하라는 메시지가 표시됩니다.

Do you accept the license terms? >>> yes

라이센스를 승인하려면 yes 를 입력하면 스크립트가 설치 위치를 선택하도록 요청합니다.

Anaconda3 will now be installed into this location: /home/vagrant/anaconda3 - Press ENTER to confirm the location - Press CTRL-C to abort the installation - Or specify a different location below

기본 위치는 대부분의 사용자에게 적합합니다. ENTER 를 눌러 위치를 확인하면 설치 프로세스가 시작됩니다.

설치에 시간이 걸릴 수 있습니다. 완료되면 다음이 표시됩니다.

Preparing transaction: done Executing transaction: done installation finished. Do you wish the installer to initialize Anaconda3 by running conda init?

yes ENTER 하고 Enter 키를 누르면 스크립트가 PATH conda 를 추가합니다.

==> For changes to take effect, close and re-open your current shell. <== If you'd prefer that conda's base environment not be activated on startup, set the auto_activate_base parameter to false: conda config --set auto_activate_base false Thank you for installing Anaconda3! =========================================================================== Anaconda and JetBrains are working together to bring you Anaconda-powered environments tightly integrated in the PyCharm IDE. PyCharm for Anaconda is available at:

Anaconda 설치를 활성화하려면 다음 명령을 사용하여 Anaconda 설치 프로그램이 추가 한 새 PATH 환경 변수를 현재 쉘 세션에로드하십시오.

source ~/.bashrc

Anaconda가 성공적으로 설치되었는지 확인하려면 conda 명령을 사용하십시오.

conda info

active environment: base active env location: /home/vagrant/anaconda3 shell level: 1 user config file: /home/vagrant/.condarc populated config files: conda version: 4.7.12 conda-build version: 3.18.9 python version: 3.7.4.final.0 virtual packages: base environment: /home/vagrant/anaconda3 (writable) channel URLs: https://repo.anaconda.com/pkgs/main/linux-64 https://repo.anaconda.com/pkgs/main/noarch https://repo.anaconda.com/pkgs/r/linux-64 https://repo.anaconda.com/pkgs/r/noarch package cache: /home/vagrant/anaconda3/pkgs /home/vagrant/.conda/pkgs envs directories: /home/vagrant/anaconda3/envs /home/vagrant/.conda/envs platform: linux-64 user-agent: conda/4.7.12 requests/2.22.0 CPython/3.7.4 Linux/4.19.0-5-amd64 debian/10 glibc/2.28 UID:GID: 1000:1000 netrc file: None offline mode: False

아나콘다 업데이트

Anaconda 업데이트는 매우 간단한 과정입니다. 다음과 같이 conda 도구를 업데이트하십시오.

conda update conda

업데이트 확인 메시지가 표시되면 y 를 입력하여 계속하십시오.

conda 가 업데이트되면 Anaconda 업데이트를 진행하십시오.

conda update anaconda

프롬프트가 표시되면 이전과 동일하게 y 를 입력하여 계속하십시오.

Anaconda 설치를 정기적으로 업데이트해야합니다.

Anaconda 제거

데비안 시스템에서 Anaconda를 제거하려면, 먼저 Anaconda를 설치 한 디렉토리를 제거하십시오:

rm -rf ~/anaconda3

~/.bashrc 파일을 편집하고 PATH 환경 변수에서 Anaconda 디렉토리를 제거하십시오.

~ /.bashrc

# >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/home/vagrant/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" if; then eval "$__conda_setup" else if; then. "/home/vagrant/anaconda3/etc/profile.d/conda.sh" else export PATH="/home/vagrant/anaconda3/bin:$PATH" fi fi unset __conda_setup # <<< conda initialize <<<

다음 rm 명령을 실행하여 사용자 홈 디렉토리에서 숨겨진 파일 및 폴더를 제거하십시오.

rm -rf ~/.condarc ~/.conda ~/.continuum ```

결론

데비안 시스템에 Anaconda를 다운로드하여 설치 했으므로 공식 conda 시작 안내서를 확인할 수 있습니다.

데비안 아나콘다