Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a plugin for sublime text 2 for debugging python?

Is there a plugin for sublime text 2 for debugging python? Sublime Text is a great editor for python, but once the project gets too big, I have to use other IDEs (such as eclipse) for debugging.

Do any of you Pythonists have a solution for this issue?

like image 372
zenpoy Avatar asked Oct 22 '12 22:10

zenpoy


People also ask

Does Sublime Text have a debugger for Python?

SublimeDebugger. This is a graphical debugger for Sublime Text 3.

How do I debug in Python Sublime Text?

Use ctrl+shift+b to toggle breakpoint in a line you've referenced the same sublime tool that I based my question on.

Is there a debugger in Sublime Text?

Java Prime Pack Debugging is the process of finding errors and bugs in the given code and fixing them. Sublime editor includes various plugins that have debugging features, which helps in finding errors easily. It is an extension used for debugging the PHP files and scripts.

How do I enable debugging in Python?

The debugger is enabled by default when the development server is run in debug mode. When running from Python code, passing debug=True enables debug mode, which is mostly equivalent. Development Server and Command Line Interface have more information about running the debugger and debug mode.


2 Answers

Try to https://github.com/wuub/SublimeREPL, it use pdb to debug python,and easy to install by package controller

like image 134
TangbiaoJiujiu Avatar answered Sep 19 '22 06:09

TangbiaoJiujiu


Try to https://pypi.python.org/pypi/PdbSublimeTextSupport Yes, it's not exactly you wont, but something.

like image 42
Shooe Avatar answered Sep 20 '22 06:09

Shooe