如何在Heroku上使用Mechanize,BeautifulSoup,html2text

时间:2014-04-10 02:28:14

标签: python heroku mechanize mechanize-python

我将我的应用程序部署到使用mechanize,beautifulsoup4和html2text的Heroku,但是对于heroku上缺少的依赖项存在一些错误。

我只能通过将此行添加到requirements.txt:

来设法安装BeautifulSoup
beautifulsoup4==4.1.3

但是,我无法通过添加到requirements.txt来安装mechanize和html2text。我试过几件事:mechanize = xxx html2text = xxx(xxx =不同的版本)但到目前为止它们都没有。

如何将这两个依赖项添加到我的requirements.txt中,以使其在Heroku上运行?

非常感谢

1 个答案:

答案 0 :(得分:0)

我想通了,只是运行pip冻结> requirements.txt并且它将用具有所有依赖项的新文件替换旧文件。无需手动添加它。