1.获取 *** 作目录
[root@liu site-packages]# pythonPython 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', '/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/lib64/python2.6/site-packages/gtk-2.0', '/usr/lib/python2.6/site-packages']>>>123456789
可以看出,我的工作目录是/usr/lib/python2.6/site-packages/。
2.进入工作目录,编写tab.py补全文件
[root@liu site-packages]# cd /usr/lib/python2.6/site-packages/[root@liu site-packages]# vim tab.py 123
tab.py内容如下,建议粘贴的时候保证格式正确性
1 #!/usr/bin/python
2 # python tab file
3 import sys 4 import readline 5 import rlcompleter 6 import atexit 7 import os 8 # tab completion
9 readline.parse_and_bind('tab: complete') 10 # history file
11 histfile = os.path.join(os.environ['HOME'], '.pythonhistory') 12 try: 13 readline.read_history_file(histfile) 14 except IOError: 15 pass
16 atexit.register(readline.write_history_file, histfile) 17
18 del os, histfile, readline, rlcompleter123456789101112131415161718
3.添加环境变量,使其生效
[root@liu site-packages]# cd [root@liu ~]# vim .bashrc123
在末尾添加一行
export PYTHONSTARTUP=/usr/lib/python2.6/site-packages/tab.py1
4.重读.bashrc文件
source .bashrc1
或者
. .bashrc1
5.测试效果
[root@liu ~]# 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 math>>>math.math.__class__( math.acos( math.fsum(math.__delattr__( math.acosh( math.hypot(math.__dict__ math.asin( math.isinf(math.__doc__math.asinh( math.isnan(math.__file__ math.atan( math.ldexp(math.__format__(math.atan2( math.log(math.__getattribute__( math.atanh( math.log10(math.__hash__( math.ceil( math.log1p(math.__init__( math.copysign( math.modf(math.__name__ math.cos( math.pimath.__new__( math.cosh( math.pow(math.__package__math.degrees( math.radians(math.__reduce__(math.e math.sin(math.__reduce_ex__( math.exp( math.sinh(math.__repr__( math.fabs( math.sqrt(math.__setattr__( math.factorial( math.tan(math.__sizeof__(math.floor( math.tanh(math.__str__( math.fmod( math.trunc(math.__subclasshook__( math.frexp(
>>>math.123456789101112131415161718192021222324252627
完成。我一开始一直报错,然后通过排查就是因为tab.py格式不正确。注意其格式。
先确认你系统上安装了python idle或者其他的代码编辑器,例如vim、Eclipse with PyDev、Sublime Text、Komodo Edit、PyCharm、Wing、PyScripter、The Eric Python IDE
Linux上安装IDLE在Debian / Ubuntu Linxu系统上,输入下面的apt-get命令来安装 idle IDE:
$ sudo apt-get install idle
在RHEL / CentOS / Scientifc / Fedora Linxu系统上,输入下面的yum命令来安装idle IDE:
# yum install python-tools
Linux上怎么启动IDLE?输入下面的命令:
$ idle
IDE是开发者创建程序时所使用的软件包,它可以通过简单的用户界面集成多个高度关联的组件,从而最大化提升开发者的生产效率,本质上,IDE是一种改进代码创建、测试和debug流程的工具,它使这些工作更加简单。
IDE使用的工具包括:文本编辑器和/或解释器装配自动化工具(assembly automation tool)调试器(debugger)。
下面是目前比较流行的Python IDE:
1、PyCharm
由著名软件开发公司JetBrains开发。在涉及人工智能和机器学习时,它被认为是最好的Python
IDE。最重要的是,Pycharm合并了多个库,如Matplotlib和NumPy,帮助开发者探索更多可用选项。
其支持web开发框架,如Pyramid、Flask和Django。提供智能代码功能,可以执行更精确、快速的bug修复。在Docker和Vagrant连接和ssh终端的帮助下,允许在远程主机上进行程序开发。
2、Visual Studio Code
VS Code是完整的代码编辑器,具备很多优秀功能,许多程序员称其为最好的IDE编辑器。
其Electron框架允许开发者在几乎所有平台上使用VS Code。在编辑器中直接debug。支持多个键盘快捷键,以加速编程。
3、Sublime Text
被认为是最好的Python编辑器,因为它简单、通用、方便。它使用广泛,可用于不同的平台。
可处理多种标记语言。允许用户选择想要进行的项目。具备能够提供类和函数宽索引的重要工具。提供强大的 API 和组织化的生态系统,以实现高性能。
4、VI/Vim
位列最好的Python IDE工具前 5 名。它是一个modaleditor,可以从「文件编辑」中分割文件。相比最初的Vi,Vim有了巨大进步,功能更加强大。
其具备键盘界面,可以提升效率。支持多个插件。通过.vimrc文件实现不同扩展功能。
5、GNU Emacs
也是最好Python编辑器的有力竞争者。它常被描述为可扩展、自文档化、实时显示。尽管它在业界并非最新,但它经常升级来满足开发者的需求。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)