[Airflow] 가상환경에서 Airflow 설치하기

이향기·2022년 2월 16일
0
# 가상환경이 설치될 기본 경로 설정
$ cd Documents/Kaylie/RealtimeKeyword/airflow_test
# virtualenv 패키지 설치
$ python3 -m pip install virtualenv virtualenvwrapper --user
# 가상환경 경로 생성
$ mkdir venv
# 가상환경 생성
$ virtualenv --python=python3.9 venv
# 가상환경 활성화
$ source ./venv/bin/activate
$ pip install --upgrade pip
$ pip install pymysql
# airflow 설치
$ pip install apache-airflow
# airflow의 home directory 생성
$ export AIRFLOW_HOME=`pwd`/airflow
# airflow DB 초기화
$ airflow db init
$ lsof -i tcp:8080

https://towardsdatascience.com/an-introduction-to-apache-airflow-21111bf98c1f

profile
Data science & Machine learning, baking and reading(≪,≫)

0개의 댓글