Issue
I am confused with the Run Selection/Line in Python Terminal
command. In my VsCode (Windows 11). I have two commands with the same shortcut Shift+Enter
.
One is launching an Interactive Jupyter notebook (awful). The other sends it to a Python Terminal (better). My ideal case would be to send it to an Ipython terminal.
How to configure that properly?
Solution
Could you try this?
"terminal.integrated.defaultProfile.windows": "IPython",
"IPython": {
"path": "C:\\Work\\python3.10\\.venv\\Scripts\\ipython.exe" //The path to the ipython.exe, please take care of which ipython you have selected, this means which python interpreter selected in the terminal.
},
Answered By - Steven-MSFT
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.