好的,所以对于学校我不得不使用Ubuntu 12.04设置一台计算机来运行用Python 3.3编写的Python程序。我知道12.04附带了Python 3.2,所以我按照this thread中第一个回复的步骤来安装Python 3.3:
现在当我打开终端时,我输入~/bin/py
让它在终端顶部显示以下内容:
Python 3.3.2 (default, Dec 10 2013, 11:35:01)
[GCC 4.6.3] on Linux
Type "help", "copyright", "credits", or "license" for more information.
>>>
到目前为止一切顺利。现在我无法在我的Windows笔记本电脑上复制我执行的相同Python程序的功能。
(这是我在Windows上的Python命令行中键入的内容)
import filereader
from filereader import *
reader = filereader("C:\Python33\ab1copy.ab1")
reader.show_entries()
最终结果是文件中找到的数据类型的目录。在上面的示例中,filereader类位于Python33\Lib\site-packages\filereader.py
。在Ubuntu计算机上,它的位置是Python-3.3.2\Lib\site-packages\filereader.py
。同样在Ubuntu上,ab1copy.ab1
文件现在位于主目录中。
如上所述,在Ubuntu终端中实现Python 3.3.2的识别后,如何在那里复制程序的功能?如果我尝试输入相同的第一个命令“import filereader”,我会收到以下错误:
>>>import filereader
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'filereader'
答案 0 :(得分:1)
在终端
中试试$data = base64_encode(gzcompress(serialize($input)));
答案 1 :(得分:0)
它可能不在您的python路径中。
选中此项以查看其来源的来源:
import sys
print(sys.path)