IT 관련/파이썬

파이썬 Superset 연결

과정에서 오는 행복 2022. 5. 20. 15:36

SuperSet은 데이터 분석용 사이트 제공

[설치방법]
>>> pip install apache-superset

>>> pip install markupsafe==1.1.1

superset이 flask를 사용함 환경변수 수정
>>> $env:FLASK_APP="superset"

>>> superset db upgrade
>>> superset fab create-admin  
(관리자 정보를 넣어줌)

>>> superset  load_examples  
(샘플을 가져옴)

>>> superset init 
(초기화 시켜줌)

[실행]
(내 PC에서 사용하고자 할때)
>>> superset run -p 8088 --with-threads --reload --debugger

(서버에서 할 경우)
>>> superset run -p 8088 --with-threads --reload --debugger -h 서버IP주소


[추가설치] - DB드라이버


기본DB드라이버는 SQLite임
>>> pip install psycopg2
>>> pip install pymssql   (mssql)
>>> pip install pymysql   (mysql)
>>> pip install cx-oracle  (오라클)

[결과]

반응형