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.
当我创建我的 requirements.txt 时,我总是希望它获得最新的包,而我不必知道版本号,我该怎么做?
例如,我希望它获得最新版本的 Django:
要求.txt
姜戈>= 南==0.7.6
姜戈>=
南==0.7.6
只是不要指定版本号
Django South==0.7.6
嗯,这是一个坏主意。有一个 requirements.txt 的想法是你可以完美地复制你在你开发的机器上拥有的东西,即它工作的环境。
你可以通过不在 requirements.txt 中指定版本号来做你想做的事,但你最好手动升级每个模块/包并在生产中使用它之前确认它可以工作。