1. 이클립스에서 파이썬 설치
① 아나콘다 다운로드(파이썬 라이브러리)
Anaconda | The World's Most Popular Data Science Platform
Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.
www.anaconda.com
product - individual Edition
Python 3.8 : 64-Bit Graphical Installer (457 MB) Download
Anaconda3-2020.11-Windows-x86_64.exe 관리자 권한으로 실행
C:\anaconda3 경로에 설치
Add Anaconda3 to my PATH environment variable Uncheck
② PyDev 설치
eclipse - help - eclipse market place - PyDev 검색 - install
general - workspace / Web - CSS/HTML/JSP에서 UTF-8로 변경
Window - Preferences - PyDev - Interpreters - Phython InterPreter - Browse for python/pypy.exe - C:\anaconda3\Phython.exe 선택 - apply
③ 가상환경 설치
시작 - anaconda - anaconda prompt 실행
conda create --name test python=3.7 anaconda 입력
가상환경 활성화 명령 : activate test
가상환경 비활성화 명령 : conda deactivate test
④ 주피터 실행 (웹상에 실행)
cd C:\work\psou
python aa.py
jupyter notebook
new - python3
⑤ colab
colab.research.google.com/notebooks/intro.ipynb
Google Colaboratory
colab.research.google.com
⑥ 프로젝트 시작
File - New - PyDev - 프로젝트명 입력, 3.8, Python 선택