Graphical introduction to PyCharm breakpoint debugging django steps

高洛峰
Release: 2017-03-20 11:33:57
Original
1465 people have browsed it

When I was using PyCharm to develop the django program, the method of printing logs to debug the program still felt a bit cumbersome and unintuitive, so I studied the breakpoint debugging method as follows:

1. Open your project and find Run-->Edit Configurations

Graphical introduction to PyCharm breakpoint debugging django steps## in the menu bar.

2. Select Python in the opened dialog box and click the + sign

Graphical introduction to PyCharm breakpoint debugging django steps

## 4. Select Python

Graphical introduction to PyCharm breakpoint debugging django steps

5. A new item Unnamed appears. You can rename it debug, which sounds nicer

Graphical introduction to PyCharm breakpoint debugging django steps

#6. For the script, select manage.py of your website. Use runserver as the script parameter, just like you would normally use the command. The lines are the same. Smart students should have discovered it. You can also configure command parameters such as migrate (database synchronization) to realize the fast running of the command and save your hands.

Graphical introduction to PyCharm breakpoint debugging django steps

## 7. Then find Run-->Debug'debug' in the menu bar and click

Graphical introduction to PyCharm breakpoint debugging django steps

8. After running, you can see in the Console that the server has After running, there is a log printing

Graphical introduction to PyCharm breakpoint debugging django steps

9. After that, Try adding breakpoints in your program. When the program reaches your breakpoint, it will freeze. Have fun debugging!

Graphical introduction to PyCharm breakpoint debugging django steps

The above is the detailed content of Graphical introduction to PyCharm breakpoint debugging django steps. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template