houdini python 配置 vscode 环境

一、在我的文档python文件夹中找到houdini.env文件,打开,加入语句

EDITOR = vscode路径
例如:EDITOR = D:\vscode\Microsoft VS Code\Code.exe

houdini python 配置 vscode 环境_第1张图片

接下来在houdini里面python Source Editor等代码编译窗口的地方按下ait+E则会打开vscode编译器,在编译器输入代码后保存,关闭vscode则代码会加载到窗口中,如图所示:

houdini python 配置 vscode 环境_第2张图片
二、为vscode添加hou库
在houdini里面查找hou库所在位置

print hou.__file__

在这里插入图片描述
在vscode的setting.json文件中添加语句

"python.autoComplete.extraPaths": ["D:/houdini/houdini/python2.7libs"]

houdini python 配置 vscode 环境_第3张图片

实现了代码提示功能
houdini python 配置 vscode 环境_第4张图片

你可能感兴趣的:(python,houdini,vscode)