我是cython的新手。
我有以下目录结构。
cython_program/
cython_program/helloworld.py
cython_program/lib/printname.py
你好世界.py:
import lib.printname as name
def printname():
name.myname()
打印名称.py:
def myname():
print("this is my name")
设置.py:
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
ext_modules = [
Extension("helloworld", ["helloworld.py"]),
Extension("mod", ["./lib/printname.py"]),
]
setup(
name = 'My Program',
cmdclass = {'build_ext': build_ext},
ext_modules = ext_modules
)
我遇到的问题是,当我python setup.py build_ext --inplace
在cython_program
目录中使用编译程序时。它确实成功编译了程序并printname.c
在 lib 文件夹中生成了一个文件。
但是当我将 printname.py 和 helloworld.py 移动到一个单独的文件夹以确保我的 cython 编译代码正在运行时。它给了我以下错误 ImportError: No module named lib.printname
。
为什么不使用主helloworld.py
文件编译模块(lib.printname)?
注意:如果我将 helloworld.py 和 printname.py 保存在同一个文件夹中,这会很好。
提前致谢。