Why is pxd file file not found/seen while cythonizing?(为什么Cython化时找不到/看不到pxd文件?)
本文介绍了为什么Cython化时找不到/看不到pxd文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试编译和运行一个Cython扩展。同一目录中有三个文件:
main.pxd
cdef class Function:
cdef object f
main.pyx
cdef class Function:
def __init__(Function self, object f):
if callable(f):
self.f = f
elif type(f) in [staticmethod,classmethod]:
self.f = f
else:
raise TypeError("constructor argument must be callable")
setup.py
# import setuptools
from distutils.core import Extension, setup
from Cython.Build import cythonize
# define an extension that will be cythonized and compiled
ext = Extension(name="Do", sources=["main.pyx"])
setup(ext_modules=cythonize(ext,language_level=3))
我调用python setup.py build_ext --inplace
。代码编译时没有错误。但是,当我尝试在另一个Python模块中创建新的Function
对象时,我收到以下错误:
File "main.pyx", line 4, in Do.Function.__init__
AttributeError: 'Do.Function' object has no attribute 'f'
这告诉我编译器不知道main.pxd。将cimport main
添加到main.pyx的顶部会导致编译器错误。
如何让Cython看到main.pxd并将其包含在二进制文件中?
Python3.6、Cython0.29.23、Windows 10
更新:
Cython文档有an example。在共享扩展类型部分,有一个灌木类的代码。我将代码完全复制到main.pxd和main.pyx中。我收到与之前类似的错误:'Do.Shrubbery' object has no attribute 'width'
。
更新:
将public
添加到pxd文件中的cdef。出现相同错误。
推荐答案
已通过使扩展名与PYX和pxd文件的名称相同解决此问题。
这篇关于为什么Cython化时找不到/看不到pxd文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:为什么Cython化时找不到/看不到pxd文件?
基础教程推荐
猜你喜欢
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01