How to send a script path in PyDev for debugging instead of inserting settrace in the script?
问题 I'm following a pretty old guide where one could tell PyDev a script path from another application & it would debug it, line by line in eclipse. I like this method, instead of putting settrace() breakpoints in the main script. scriptpath = "Users/me/Desktop/script.py" debuggerpath = "/Users/me/.p2/pool/plugins/org.python.pydev.core_7.5.0.202001101138/pysrc" import pydev_debug as pydevd pydevd.debug(scriptpath, debuggerpath, trace=True ) Most likely, the api has changed. What is the current