私はこれを使用できることを知っています:
import rlcompleter, readline
readline.parse_and_bind('tab: complete')
私のpythonインタープリターでipythonスタイルのタブ補完を有効にします。
Pythonを起動するたびに、起動時にデフォルトでこれを実行するにはどうすればよいですか?
私はこれを使用できることを知っています:
import rlcompleter, readline
readline.parse_and_bind('tab: complete')
私のpythonインタープリターでipythonスタイルのタブ補完を有効にします。
Pythonを起動するたびに、起動時にデフォルトでこれを実行するにはどうすればよいですか?
それをファイルに入れます.pythonrc
(環境変数でそのファイルの名前を制御できますPYTHONSTARTUP
)。ここについてもっと読む:
PYTHONSTARTUP
If this is the name of a readable file, the Python commands
in that file are executed before the first prompt is displayed
in interactive mode. The file is executed in the same namespace
where interactive commands are executed so that objects defined
or imported in it can be used without qualification in the interactive
session. You can also change the prompts sys.ps1 and sys.ps2 in this file.
以下も参照してください。