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.
如我所见,djangorecipe 1.6 删除了对 fcgi 的支持。可以在 buildout 中指定使用 1.5 版以便能够使用 fcgi 吗?
谢谢
是的,将版本固定在一个[versions]部分中:
[versions]
[buildout] # other options versions = versions [versions] djangorecipe = 1.5
固定版本通常是一个好主意,并allow-picked-versions = false在该部分中设置为您尚未[buildout]固定的任何鸡蛋强制出错。
allow-picked-versions = false
[buildout]