python3.6 tabキー機能の追加

2687 ワード

1.ファイルの編集
  # vim /usr/lib/python3.6/site-packages/tab.py 

  1import sys,readline,rlcompleter,atexit,os
  2 
  3 readline.parse_and_bind('tab: complete')
  4 histfile = os.path.join(os.environ['HOME'], '.pythonhistory')
  5 try:
  6     readline.read_history_file(histfile)
  7 except IOError:
  8     pass
  9     atexit.register(readline.write_history_file, histfile)
 10 del os, histfile, readline, rlcompleter

2.環境変数の設定
export PYTHONSTARTUP=/usr/lib/python3.6/site-packages/tab.py

書き込み~/.bash_profileファイル保存終了後source~/.bash_プロファイル(プロファイルを有効にする)
3.テスト
(python36) [root@aliyun ~]# python 
Python 3.6.4 (default, Apr 17 2018, 09:31:58) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.sys  #  tab 
os.sys            os.sysconf(       os.sysconf_names  os.system(        
>>> os.sys