AI & 머신러닝 & 딥러닝

[딥러닝] 개발환경 구축하기

mle21 2022. 7. 25. 06:00
반응형

ai, machine learning, deep learning 등에 관심이 있다면 아래 내용을 참고하여 간단하게 개발환경을 구축하자.


1. python 설치

-. 그냥 python 홈페이지 접속해서 최신버전으로 깔자. 현 시점 최신버전은 3.10.7이다.

 

Download Python

The official home of the Python Programming Language

www.python.org

2. vscode 설치

-. 통합개발환경(IDE)으로 vscode를 깔도록 하자. 제일 편한거 같다. 이것도 홈페이지 접속해서 최신버전으로...

 

Download Visual Studio Code - Mac, Linux, Windows

Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.

code.visualstudio.com

3. vscode extension 설치 및 파이썬 인터프러터 설정하기

-. python은 필수로 설치하고 indent-rainbow, material icon theme등 extension은 기호에 따라 설치하자.

-. vscode에서 ctrl+shift+p → Python: Select Interpreter 검색 → 설치한 Python 버전 선택

 

4. python 패키지 설치

-. tensorflow, pytorch, numpy 등 python 패키지를 설치하자.

-. vscode 터미널창에서 pip install 패키지이름 으로 설치 가능하다. ex) pip install numpy

-. 회사 보안때문에 안깔릴때 아래글 참조

 

[error] SSLError, SSLCertVerificationError

@@ 문제: 회사에서 python package 설치 시 에러 발생 pip install pandas WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_V

t-shaped-person.tistory.com

 

728x90