# 00\_들어가기 전에

> 환경구축
>
> 아나콘다 / 주피터노트북 / 판다스, 넘파이, 매트플롯

## 데이터 분석 프레임워크 Anaconda

> 1. 패키지 관리: pip 과 비슷하지만, 데이터 과학에 초점을 두고 있음
> 2. 가상환경관리: venv 와 비슷함

1. 가상환경만들기
   * ```bash
     conda create -n [가상환경이름] python=3.7
     # 본인버전 사용하면 됨
     ```
2. 가상환경 실행
   * ```bash
     conda activate [가상환경이름]
     ```
3. 원하는 패키지들 설치
4. 가상환경 종료
   * ```bash
     conda deactivate
     ```

### Caution

* 쥬피터 설치 - 콘다가상환경실행 - 라이브러리설치 - 쥬피터 실행 (x)
* 콘다가상환경실행 - 쥬피터설치 - 라이브러리설치 - 쥬피터 실행 (o)

‼️ 1번처럼 했더니 쥬피터 에서 라이브러리 import 가 되지 않았음

\=> 쥬피터 노트북도 환경별로 따로 설치해주자 !


---

# 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://pyohamen.gitbook.io/til/python/00_.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.
