tab.py文件-创新互联
centos系统下需要使用tab键补全
创新互联公司是一家业务范围包括IDC托管业务,网络空间、主机租用、主机托管,四川、重庆、广东电信服务器租用,联通服务器托管,成都网通服务器托管,成都服务器租用,业务范围遍及中国大陆、港澳台以及欧美等多个国家及地区的互联网数据服务公司。在/usr/local/lib/python2.7/site-packages/目录下编写一个tab.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
然后导入tab模块
[root@omserver ~]# python
Python 2.7 (r27:82500, Mar 18 2016, 13:43:18)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import tab
>>>import os
>>> os. (按tab键)
Display all 238 possibilities? (y or n)
os.EX_CANTCREAT os.WEXITSTATUS( os.chroot( os.getresgid( os.setpgid(
os.EX_CONFIG os.WIFCONTINUED( os.close( os.getresuid( os.setpgrp(
os.EX_DATAERR os.WIFEXITED( os.closerange( os.getsid( os.setregid(
os.EX_IOERR os.WIFSIGNALED( os.confstr( os.getuid( os.setresgid(
os.EX_NOHOST os.WIFSTOPPED( os.confstr_names os.initgroups( os.setresuid(
os.EX_NOINPUT os.WNOHANG os.ctermid( os.isatty( os.setreuid(
os.EX_NOPERM os.WSTOPSIG( os.curdir os.kill( os.setsid(
os.EX_NOUSER os.WTERMSIG(
........
如果在导入tab模块的时候报
ImportError: No module named readline
wget https://pypi.python.org/packages/source/r/readline/readline-6.2.1.tar.gz#md5=9604527863378512247fcaf938100797 --no-check-certificate
tar -zxvf readline-6.2.1.tar.gz
cd readline-6.2.1
python setup.py install
如果在编译安装的过程中出现如下错误:
/usr/bin/ld: cannot find -lncurses
collect2: ld returned 1 exit status
error: command 'gcc' failed with exit status 1
需要安装:
yum -y install gcc
找到libncurses.so
[root@omserver lib]# locate libncurses.so
/lib64/libncurses.so.5
/lib64/libncurses.so.5.7
然后
[root@omserver lib64]# cd /usr/local/lib
[root@omserver lib]# ln -sv /lib64/libncurses.so.5.7 libncurses.so
再重新编译安装
[root@omserver xmxu]# cd readline-6.2.1
[root@omserver readline-6.2.1]# python setup.py install
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
新闻名称:tab.py文件-创新互联
文章位置:http://scyanting.com/article/dpiejg.html