vscode debug Rust in a conda virtual env #874
Unanswered
Albert-Zhao-2020
asked this question in
Q&A
Replies: 1 comment 2 replies
-
CodeLLDB is a native debugger, you cannot use it to debug Python. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to debug a program coded in Rust and python which Rust called a python file. The debuger is codeLLVM. But how can I use a conda virtual evn from Rust main?
I have tried it with a "preLaunchTask":"pythonenv", the tasks.json like this: {
"version": "2.0.0", "tasks": [ { "label": "pythonenv", "type": "shell", "command": "/home/xxx/miniconda3/condabin/conda activate tt" } ] } but it did not work.So any suggestion? i will appracicate it.
Beta Was this translation helpful? Give feedback.
All reactions