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.
我正在尝试将(http://pytz.sourceforge.net/)中的 pytz 时区包包含到我的 Django 应用程序(1.3 版)中,这样我就可以改进时区功能。但是我担心这个 python 包不会部署到我在 Heroku 中的应用程序上。我如何确保这个包被部署在 Heroku 上?
或者,如果有人能告诉我如何处理 Django 1.3 中的 TZ 问题,我将不胜感激。
必须将包添加到 requirements.txt 文件中。
确定版本号的一种方法是在本地安装东西:
$ pip install pytz $ python >> import pytz >> pytz.__version__ '2013b'
然后在 requirements.txt 中添加以下行:
pytz==2013b
如果要部署包,请将其添加到requirements.txt文件中。
requirements.txt