我正在使用:
myfile.pyx
编译.pyd
。有办法:
build/
(而不是build/
子文件夹).c
子文件夹,删除os.remove(...)
文件) 而不必自己使用console.log(myModule); // should print [Object object]
console.log(myModule.otherFunc); // should print a function definition
?
答案 0 :(得分:5)
您可以使用--inplace
选项:
--inplace (-i) ignore build-lib and put compiled extensions into the
source directory alongside your pure Python modules
setup.py clean
应该清理构建目录。 setup.py clean --all
清除所有构建输出。