1) Python 설치

www.python.org/downloads/

 

Download Python

The official home of the Python Programming Language

www.python.org

 

2) git 연동

3) miniconda 설치

docs.conda.io/en/latest/miniconda.html

 

Miniconda — Conda documentation

Miniconda Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages, including pip, zlib and a few others. Use th

docs.conda.io

 

4) 가상환경 만들기

conda create --name <가상환경 이름> python=3.7

- 기본으로 (base) 표시가 있음

 

5) 콘다 가상환경 리스트

conda env list

 

6) 콘다 환경 실행

conda activate <가상환경 이름>

- 가상환경이 실행되면 base -> ( 가상환경 이름) 으로 표시됨

 

7) flask 설치

pip install flask

 

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기