Cython构建路径

时间:2016-02-16 18:30:16

标签: python module path compilation cython

当我使用cython时,我使用这个命令行来编译我的pyx文件:

python setup.py build_ext --inplace

使用--inplace参数,我的C文件,构建文件夹和pyd编译的python模块去我的pyx源文件。

有没有办法在特定文件夹中编译所有这些文件?我在google和cython网站上搜索过没有任何东西。

1 个答案:

答案 0 :(得分:1)

您可以尝试:

python setup.py build_ext -b /../../../../dir/ -t .