-
Maybe some clarifications are needed, we can install debugpy separately in its own isolated virtualenv, where debugpy and the application being debugged are in separate virtualenvs (is this right?) Are there any requirements on python versions, do they need to use the same python version or can it be different? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
debugpy itself doesn't have any dependencies (that it doesn't vendor), so there's technically no need for it to be installed into any environment - you can even just clone the repo and then do However, if you do pip install it into an environment, that environment would need to be active for you to be able to do |
Beta Was this translation helpful? Give feedback.
Ah, I see. Yes, it is fine to have separate Python versions in this case.