Python tab 补全
短信预约 -IT技能 免费直播动态提醒
1. 先准备一个tab.py的脚本
shell> cat tab.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/usr/bin/python # python tab file import sys import readline import rlcompleter import atexit import os # tab completion readline.parse_and_bind( 'tab: complete' ) # history file histfile = os.path.join(os.environ[ 'HOME' ], '.pythonhistory' ) try : readline.read_history_file(histfile) except IOError: pass atexit.register(readline.write_history_file, histfile) del os, histfile, readline, rlcompleter |
2. 查看Python默认的模块存放地址
1 2 3 4 5 6 7 | [root@localhost ~] # python Python 2.6 . 6 (r266: 84292 , Nov 22 2013 , 12 : 16 : 22 ) [GCC 4.4 . 7 20120313 (Red Hat 4.4 . 7 - 4 )] on linux2 Type "help" , "copyright" , "credits" or "license" for more information. >>> import sys >>> sys.path [' ', ' / usr / lib64 / python26. zip ', ' / usr / lib64 / python2. 6 ', ' / usr / lib64 / python2. 6 / plat - linux2 ', |
3. 拷贝该脚本到默认模块存放路径
1 | cp tab.py /usr/lib64/python2 .6/ |
4. 现在可以用了
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341