Visual studio code interactive python console

后端 未结 3 443
别那么骄傲
别那么骄傲 2021-02-07 00:22

I\'m using visual studio code with DonJayamanne python extension. It\'s working fine but I want to have an interactive session just like the one in Matlab, where after code exec

3条回答
  •  遇见更好的自我
    2021-02-07 00:47

    The following line will solve your problem.

     "python.terminal.launchArgs": ["-c","\"from IPython import embed; embed()\""]
    

提交回复
热议问题