PyCharm: Quick Start

PyCharm is IDE for Python developed by JetBrains.

In this post, I am going to show you how I installed it on Mac, did hello world, and used the debugging feature.


1. install

You can install the Community Edition, which is free.

$ brew install pycharm-ce


2. setup & create project

Open the application:

$ open /Applications/PyCharm\ CE.app/

and follow the instructions. Then, create a test project.



3. hello world (Hi, PyCharm)

Click on the run button on the upper right.


4. debug

Replace the code to test the debugging feature. add a breakpoint, then press the debug button.

You will see that it stops at the breakpoint, and values in the variables are displayed.



Comments

Popular posts from this blog

Minikube Installation for M1 Mac

Selenide: Quick Start