您当前的位置: 首页 >  Python

彭世瑜

暂无认证

  • 2浏览

    0关注

    2791博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

VSCode插件 code runner执行PHP,JavaScript,Python

彭世瑜 发布时间:2019-12-21 18:22:37 ,浏览量:2

文档: https://github.com/formulahendry/vscode-code-runner

常用设置

// 运行之前保存文件
"code-runner.saveFileBeforeRun": true,

// 清空控制台
"code-runner.clearPreviousOutput": true,

// 指定Python解释器
"code-runner.executorMap": {
  "python": "/Users/.pyenv/versions/py370/bin/python3",
},

快捷键 运行快捷键改为: control + r

用以下文件测试都可以顺利执行 demo.js

console.log("hello world");

demo.py

print("hello world");

demo.php

            
关注
打赏
1665367115
查看更多评论
0.2667s