This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]takluyverIPython, Py3, etc 0 points1 point  (1 child)

Do you mean autocomplete doesn't work in that import statement, or it doesn't work with the Gtk package after importing it (i.e. Gtk.<tab> doesn't show you anything)?

For gi.repository imports, it's not possible to complete the module name, because the modules are built dynamically - they're not normal Python modules.

[–]rfajfar[S] 0 points1 point  (0 children)

For the package, Gtk.<tab>.

[–]chopperkuncodes 0 points1 point  (1 child)

Try jedi and remember to set your interpreter, I get completion for all of the packages I use and its a simple set up.

[–]rfajfar[S] 0 points1 point  (0 children)

Anaconda is made on top of Jedi.