miniconda 설치

miniconda shell prompt 실행

패키지 설치
아래 명령어를 순서대로 입력
conda --version //콘다 설치 및 버전 확인
conda install jupyter //jupyter lab 설치, 설치중 shell에서 요청하는 것은 y입력 후 enter
conda install numpy
conda install pandas
conda install matplotlib
conda install tensorflow
위 단계중 문제가 생길 경우 구글링을 통해 해결해야함...
저는 python version 문제 발생
현재 기준 tensorflow는 python 3.10까지 지원
conda를 설치하면서 설치된 python은 3.11이었음
conda install python=3.10
명령어로 해결할 수 있음
위 모든 절차가 수행되었으면 준비가 거의 된것!
jupyter notebook 실행 및 테스트

import numpy as np
import pandas as pd
import matplotlib
import tensorflow as tf
print(np.__version__)
print(pd.__version__)
print(matplotlib.__version__)
print(tf.__version__)

! 데이터 분석 및 ai 학습 준비 완료~!