VS Code python设置及jupyter快捷键设置

VS Code python设置及jupyter快捷键设置

概述

之前一直使用pycharm作为python的IDE,但由于本人不是重度的python使用开发者,并且pycharm Community 不支持jupyter notebook,所以近期改用VS Code来进行python的开发和使用。

python编译环境设置

安装VS Code后,在左下角Manage->setting进入设置界面。
在这里插入图片描述
Serch settings 中输入python path,并且在Python>Analysis:Cash Floder Path中输入python的文件夹定位。
在这里插入图片描述
并且选择下方Python>Auto Complete:Extra Paths中选择Edit in setting.josn,并在其中输入如下代码:

    "python.formatting.provider": "yapf",
    "python.linting.flake8Args": ["--max-line-length=248"],
    "python.linting.pylintEnabled": false,
    "jupyter.interactiveWindowMode": "perFile",
    "jupyter.alwaysScrollOnNewCell": true,
    "jupyter.experiments.optInto": ["All"]

具体形式如图所示:
在这里插入图片描述
这里我们就完成了python的设置,新建py文件,输入print(“hello,world!”)试试吧!

设置jupyter快捷键

做python开发的都知道jupyter notebook的重要性,所以我们要实现在VS Code对.py文件使用shfit+Enter进行代码编译的方法,需要进行以下设置。
首先找到setting.josn的目录位置。
在这里插入图片描述
在当前目录下有一个keybindings.josn文件,对当前文件进行编译。
在这里插入图片描述
输入以下代码:

[
    {
        "key": "shift+enter",
        "command": "jupyter.execSelectionInteractive", 
        "when": "editorTextFocus"
    }
]

设置后保存。这样就完成了对jupyter的快捷键设置了。快去试试Shift+Enter是否管用吧。
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值