Pycharm2 [PyCharm] Shortcuts Code Completion - ⌃Space Format one line - ⌃⌥I Format current file - ⌥⇧⌘L 2021. 1. 31. [PyCharm] Run Flask Application on PyCharm In this posting, I explain how to run the Flask application on PyCharm. Installation On Mac I used the HomeBrew for installation. $ brew insstall --cask pycharm-ce On Windows I used the Chocolatey for installation. $ choco install -y pycharm-community Flask Application Let's make a very simple application for testing. from flask import Flask app = Flask(__name__) @app.route('/') def hello(): ret.. 2021. 1. 26. 이전 1 다음