码迷,mamicode.com
首页 > 编程语言 > 详细

python中的tab补齐

时间:2015-05-23 08:48:36      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

首先需要知道python的读取路径

>>> import sys
>>> sys.path
[‘‘, ‘/usr/lib64/python26.zip‘, ‘/usr/lib64/python2.6‘, ‘/usr/lib64/python2.6/plat-linux2‘, ‘/usr/lib64/python2.6/lib-tk‘, ‘/usr/lib64/python2.6/lib-old‘, ‘/usr/lib64/python2.6/lib-dynload‘, ‘/usr/lib64/python2.6/site-packages‘, ‘/usr/lib/python2.6/site-packages‘]

 

可以看到python可以去这些地方读取,我们把脚本放在/usr/lib64/python2.6 即可

[root@python python2.6]# cat startup.py
#!/usr/bin/python
# python startup 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

 

这样做一个问题就是,你每次启动python后,都需要手动导入一下,比如

>>> import startup

 

可以在系统环境变量中,加入读取路径,这样就免去了每次导入的麻烦

[root@python python2.6]# cat ~/.bashrc 

export PYTHONSTARTUP=/usr/lib64/python2.6/startup.py

 

 

即可

python中的tab补齐

标签:

原文地址:http://www.cnblogs.com/olinux/p/4523649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!