cython
安裝
windows 10 + cython
套件安裝
進行封裝
新增一個setup.py撰寫指令
再用cmd執行
作業系統不同輸出結果似乎也不同
在windows上會輸出.pyd,在linux上會有.so
主要都是把py編譯成二進制,比較安全且不容易反編譯
使用時一樣可以直接import
參考連結:
https://blog.csdn.net/weixin_43684951/article/details/98055602
https://www.cnblogs.com/ldy-miss/p/11649318.html
https://stackoverflow.com/questions/34344934/specify-cython-output-file
其他用法
包含可以製作自己的lib供他人使用,pip install xxx000,都是基於setup模組
http://o1o1o1o1o.blogspot.com/2017/02/python-setuppy.html
https://www.cnblogs.com/cposture/p/9029023.html#_lab2_2_2
https://moonlet.gitbooks.io/cython-document-zh_cn/content/ch1-basic_tutorial.html
https://zhuanlan.zhihu.com/p/65906685
https://zhuanlan.zhihu.com/p/66206425
issue
cannot run rc.exe
找檔案複製貼上即可
https://stackoverflow.com/questions/14372706/visual-studio-cant-build-due-to-rc-exe
https://blog.csdn.net/qq_42849269/article/details/83275998
takes no keyword arguments
有些function雖然可以成功封裝,但是使用時會產生錯參數數量的錯誤,需在setup.py添加參數:
Last updated