PYTHON을 깔았다면 PIP 가 있을 것이다. pip install flask or pip3 install flask pip3 show flask server.py from flask import Flask app = Flask(__name__) @app.route('/') def hellow_world(): return 'Hello World!' if __name__ == '__main__': app.run() python3 server.py 실행 하면 hello woeld 가 보이는걸 확인 할 수 있다. html 파일 불러오기 from flask import Flask,render_template app = Flask(__name__) @app.route('/') def hellow_world():..