vscode 如何编辑python 代码

系统 1402 0

1: 假设你已经安装了anaconda3
然后安装了vscode , 怎么配置才可以在写代码时候可以自动补齐

方法如下:

1: ctrl + p 会弹搜索框, 输入json
找到 launch.json 打开,修改成

            
              {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        //{
        //    "type": "node",
        //    "request": "launch",
        //    "name": "Launch Program",
        //    "program": "${file}"
        //}


        {
            "name": "Python: 当前文件",
            "type": "python",
            "request": "launch",
            "stopOnEntry": false,
            "pythonPath": "/home/zh/anaconda3/bin/python3",
            "program": "${file}",
            "cwd": "${workspaceFolder}",
            "env": {},
            "envFile": "${workspaceFolder}/.env",
            "console": "integratedTerminal",
        }
    ]
}

            
          

找到setting.json 修改为

            
              {
    "python.pythonPath": "/home/zh/anaconda3/bin/python3",
    "python.linting.enabled": false
}

            
          

完毕, 这样写代码时候就可以自动补齐了,很棒`


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论