You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for debugging Python 2.7 and 3.7 applications. These language runtimes require additional debugging support files that will be installed via the "duct-tape" image defined by the container-debug-support project.
The Python language debugging support currently installs ptvsd, which provides a debug adapter for Python. It remains to be seen if this is sufficient for use with IntelliJ.
The text was updated successfully, but these errors were encountered:
Although IntelliJ/PyCharm does use pydevd, which is wrapped by ptvsd, ptvsd doesn't seem to expose its pydevd and may have some problems co-existing with another version of pydevd installed alongside.
We likely will need to support some kind of runtime flavour. So IntelliJ could launch skaffold debug --flavour ij and match a python-ij runtime. Perhaps the dab (Debug Adapter Protocol) could be a default flavour.
Add support for debugging Python 2.7 and 3.7 applications. These language runtimes require additional debugging support files that will be installed via the "duct-tape" image defined by the
container-debug-support
project.The Python language debugging support currently installs
ptvsd
, which provides a debug adapter for Python. It remains to be seen if this is sufficient for use with IntelliJ.The text was updated successfully, but these errors were encountered: