重建 Cython 代码
Rebuilding Cython code
我下载了一个使用 Cython 的模块。我在构建内容后安装了它,如下所示,
python setup.py build
python setup.py install
但我想更改该模块的 Cython 部分并重新编译它们。事实证明我无法重新编译 Cython 文件。换句话说,我再次构建时只是得到了这个输出,
build_src: building npy-pkg config files
running build_py
running build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
running build_scripts
安装目录中未反映任何更改。
我的目标是更改作为大型模块一部分的 Cython .pyx 文件,并在每次更改后重新编译和安装它。
谢谢。
您可以尝试使用 python setup.py develop
,如 this question 中所述。进行更改后,再次执行 python setup.py develop
。
我下载了一个使用 Cython 的模块。我在构建内容后安装了它,如下所示,
python setup.py build
python setup.py install
但我想更改该模块的 Cython 部分并重新编译它们。事实证明我无法重新编译 Cython 文件。换句话说,我再次构建时只是得到了这个输出,
build_src: building npy-pkg config files
running build_py
running build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
running build_scripts
安装目录中未反映任何更改。
我的目标是更改作为大型模块一部分的 Cython .pyx 文件,并在每次更改后重新编译和安装它。
谢谢。
您可以尝试使用 python setup.py develop
,如 this question 中所述。进行更改后,再次执行 python setup.py develop
。