最新回复 (
1 )
作为PyCharm的替代方案,Visual Studio Code(VS Code)是一个轻量级且功能强大的代码编辑器,完全免费开源,非常适合Python量化开发。
运行安装程序
选择安装位置
D:\Development\VSCode\选择开始菜单文件夹
选择附加任务
完成安装
print('Hello World!')python hellow.py在项目根目录创建.vscode/settings.json:
{
"python.defaultInterpreterPath": "你的Python路径",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"editor.formatOnSave": true,
"python.formatting.provider": "autopep8",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000
}VS Code作为现代代码编辑器的代表,配合丰富的Python扩展,完全能够满足量化交易开发的各项需求,而且避免了版权问题,是更加推荐的选择。
著作权归文章作者所有。