在导入python(tab)模块时报错

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在导入python(tab)模块时报错相关的知识,希望对你有一定的参考价值。

在导入python的模块时会报错:

    配置文件:    

                    

                    #!/usr/bin/env python

                    # python Tab file

                    import sys

                    import readline

                    import rlcompleter

                    import atexit

                    import os

                    readline.parse_and_bind(‘tab:complete‘)

                    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

                    

直接在crt操作复制进tab.py不成功,会各种报错:

        提示line1,line2之类的

    

那是因为在复制进去的时候有些字符被更改了

    解决办法:

                    1.yum install lrzsz (安装上传下载软件)

                    2.在电脑上新建一个名为tab.txt的文件,然后将配置内容复制进去;保存,修改tab.txt为                          tab.py

                    3.rz(上传命令)

                    4.在调出来的文件框里选择刚刚创建的tab.py

                    5.whereis python(查看python模块放在那个文件夹下)

                                python: /usr/bin/python /usr/bin/python2.6 /usr/lib/python2.6 /usr/lib64/python2.6 /usr/include/python2.6 /usr/share/man/man1/python.1.gz  (跳出好多个目录,有些是文件不是目录,不清楚模块在哪个目录下的可以cd切进去看看)


                    6.cp tab.py /usr/lib64/python2.6(将刚刚上传的tab.py文件拷贝到python模块目录下)

                    7.python(进入python)

                            然后输入import tab.py(导入tab模块)

即可

本文出自 “zzzhbr” 博客,请务必保留此出处http://zzzhbr.blog.51cto.com/6480548/1914146

以上是关于在导入python(tab)模块时报错的主要内容,如果未能解决你的问题,请参考以下文章

python--接口测试--xlwt模块使用时报错情况解决方法

安装python模块时报错如何解决

已经装了MySQL-python,但在引用时报错:ImportError: No module named MySQLdb

python中使用openpyxl模块时报错: File is not a zip file

【Python】在安装python模块时报错:Unicode Decode Error ascii codec can't decode byte…

安装Python的psutil模块时报错:error: command 'gcc' failed with exit status 1