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.
我想Braintree在 Heroku 中运行的 Django 应用程序中使用它,我让它在本地工作,但是,当我将应用程序推送到 Heroku 时,出现错误。
Braintree
我很确定问题是我没有将 Braintree 导入我的requirements.txt,所以...
requirements.txt
如何Braintree在 Heroku 中工作?
添加Braintree到requirements.txt. 就像是
Braintree==<verson_here>
只需将其附加到requirements.txt,您可以通过运行知道什么版本:
pip freeze
这将为您提供已安装的所有外部软件包的列表。示例截图:
另外作为旁注,请确保添加从 获取输出时列出的所有内容pip freeze,这样就不会缺少任何依赖项(如果有的话)。