我对Run Selection/Line in Python Terminal命令感到困惑。在我的VsCode (Windows 11)中。我有两个具有相同快捷方式Shift+Enter的命令。
其中之一是推出互动木星笔记本(可怕)。另一个将其发送到Python终端(更好)。我的理想情况是将它发送到Ipython终端。
如何正确配置?

发布于 2022-03-08 02:46:05
你能试试这个吗?
"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.
},https://stackoverflow.com/questions/71364528
复制相似问题