所以我有一个main.py file
内部/home/richard/projects/hello-python
目录:
import sys
sys.path.append('/home/richard/projects/hello-python')
from Encode import Ffmpeg
x = Ffmpeg()
x.encode()
然后我在/home/richard/projects/hello-python/Encode
目录中创建了一个包:
__init__.py
Ffmpeg.py
初始化文件为空。Ffmpeg.py
文件包含:
class Ffmpeg(object):
i = 150
def __init__(self):
print "i am constructor"
def encode(self):
print "hello world"
现在我main.py
像这样运行脚本:
python main.py
我得到这个输出:
richard@richard-desktop:~/projects/hello-python$ python main.py
Traceback (most recent call last):
File "main.py", line 5, in <module>
x = Ffmpeg()
TypeError: 'module' object is not callable
richard@richard-desktop:~/projects/hello-python$
我认为我的模块有问题,sys.path
所以我的模块无法正确导入,但我不确定如何修复它。