zoukankan      html  css  js  c++  java
  • Visual Studio Code 1.0.1 for python

     

     jpg

    1. 安 F1健   

        ext install python

    E: est.vscode下的三个文件

    2.launch.json

    {

    "version": "0.1.0",
    "configurations": [
    {
    "name": "Python",
    "type": "python",
    "request": "launch",
    "stopOnEntry": true,
    "program": "${file}",
    "pythonPath": "c:/python34/python.exe",
    "debugOptions": [
    "WaitOnAbnormalExit",
    "WaitOnNormalExit",
    "RedirectOutput"]

    }
    ]
    }

    3.tasks.json

    {
    // See http://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "command": "c:\python34\python.exe",
    "isShellCommand": true,
    "args": ["${file}"],
    "showOutput": "always"
    }

    4.settings.json

    // 将设置放入此文件中以覆盖默认值和用户设置。
    {
    "python.pythonPath": "c:\python34\python.exe"
    }

  • 相关阅读:
    Java基础知识
    jQuery的表单操作
    SSM——查询_分页
    jQuery实现查看删除
    SSM之Maven工程的搭建
    Mybatis使用@Param
    Mybatis简单的CURD
    Mybatis使用接口开发
    初入Mybatis
    SQL语句
  • 原文地址:https://www.cnblogs.com/zengkefu/p/5416564.html
Copyright © 2011-2022 走看看