# Ananconda

서버에서 각자 만의 Python 환경을 구축하여 사용하기 위해서 Ananconda 프로그램을 사용하는 것을 추천드립니다. Anaconda 의 기본 설치 방법은 다음과 같습니다.

### Download

아래 링크에 접속하여 Linux 의 x86 에 해당하는 프로그램의 링크를 복사합니다. 링크 형태는 다음과 같습니다.

```
https://repo.anaconda.com/archive/Anaconda3-{version}-Linux-x86_64.sh
```

링크: <https://www.anaconda.com/download#downloads>

<figure><img src="/files/Q7864h0yoFAEv0pG77Yv" alt=""><figcaption></figcaption></figure>

### Installation

서버에 접속하여 개인 홈 폴더로 이동한 다음, `wget` 명령어를 사용하여 anaconda 프로그램을 다운받습니다.

```
cd ~            // 개인 홈 폴더로 이동
wget https://repo.anaconda.com/archive/Anaconda3-{version}-Linux-x86_64.sh // 홈 폴더에 프로그램 설치
```

이후 아래 명령어를 통해서 프로그램 설치를 진행합니다.

```
bash Anaconda3-{version}-Linux-x86_64.sh
```

이후 아래와 같이입력하시면 됩니다.

```
Please, press ENTER to continue            // ENTER 입력
Do you accept the license terms? [yes|no]  // yes 입력
[/home/s1/test1/anaconda3] >>>             // ENTER 입력
by running conda init? [yes|no]            // yes 입력
```

서버에 다시 접속하거나, 마지막 질문에 no 라고 답한 경우`source /home/${USER}/anaconda3/bin/activate` 명령어를 사용한 후 계정 이름 앞에 (base) 라는 글자가 보이면 정상적으로 설치가 된 것입니다.

```
(base) kim@login0:~$
```

###


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gsds.gitbook.io/gsds/for-beginners/ananconda.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
