Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现在我的一个构建中有一个文件 ffpython.exe,它使用我寻找的模块运行 python:fontforge。我的问题是如何使它像其他模块一样永久化。我的意思是,只要我打开我的常规 python 解释,该模块将像其他模块一样安装,而不使用 ffpython.exe。谢谢
将 fontforge(也)构建为 python 扩展 如果你想用普通的 python 编写 python 脚本(而不是在 fontforge 中嵌入的 python 中) $ ./configure --enable-pyextension
将 fontforge(也)构建为 python 扩展
如果你想用普通的 python 编写 python 脚本(而不是在 fontforge 中嵌入的 python 中)
$ ./configure --enable-pyextension
http://fontforge.org/source-build.html