Python gun autocomplete

if I run ipython in the terminal, when I type "im" and press TAB, the terminal will automatically end it with "import", but when I click the python console button at the bottom of the pycharm IDE, when ipython reads the environment, type 'im', press TAB, it will not autocomplete.

PyCharm uses pydevconsole.py to create an ipython environment, but I don't know how to change it to enable autocomplete.

+4
source share
1 answer

You can use Ctrl + Space to automatically complete. See here .

+2
source

Source: https://habr.com/ru/post/1606406/


All Articles