我为python dev安装了Eric5。我在gentoo上的portage。我无法获得任何自动填充功能!
#!/usr/bin/python3
import os
os. #<-I've pressed ctrl+space many times but don't get a menu :(
还安装了助手和绳子插件,但它没有帮助。配置eric以搜索API文件中的完成。
答案 0 :(得分:3)
在Eric5中,转到Preferences->Editor->APIs
下方,然后选中Compile APIs Automatically
框。
在Language
下拉菜单中选择Python2或Python3,点击Add from installed APIs
按钮,然后搜索您想要的Python-X.X.api
。
点击Apply
,然后点击OK
,您就完成了。另外,请确保在Preferences->Editor->Autocompletion
中选中了所有自动填充选项。
希望有所帮助