How do I attach a remote debugger to a Python process?

后端 未结 5 1179
慢半拍i
慢半拍i 2020-12-02 05:28

I\'m tired of inserting

import pdb; pdb.set_trace()

lines into my Python programs and debugging through the console. How do I connect a rem

5条回答
  •  情歌与酒
    2020-12-02 06:01

    I find pudb useful at emergency

    pip install pudb
    

    Project Description https://pypi.org/project/pudb/

    Tutorial: https://vimeo.com/5255125

提交回复
热议问题