在 requirements.txt 中为 Heroku 上传添加什么
What to add in the requirements.txt for Heroku uploading
我一直在通过 Heroku 网站研究 requirement.txt 的目的,但我一直不明白要真正添加到该文本文件中的是什么。我正在尝试使用 discord 托管一个机器人,我使用 pip install ...
安装的唯一东西是 selenium,discord。我知道这是 pip 安装包,但我在 youtube 上看到其他人在其中添加了他们的 git 等等。有人可以帮助我进一步了解这一点,以便我可以成功上传机器人!谢谢!
尝试将这些放入 requirements.txt:
git+https://github.com/Rapptz/discord.py
dnspython==1.16.0
PyNaCl==1.3.0
async-timeout==3.0.1
此外,确保您的 txt 文件命名为 requirements(没有 .txt`)
我一直在通过 Heroku 网站研究 requirement.txt 的目的,但我一直不明白要真正添加到该文本文件中的是什么。我正在尝试使用 discord 托管一个机器人,我使用 pip install ...
安装的唯一东西是 selenium,discord。我知道这是 pip 安装包,但我在 youtube 上看到其他人在其中添加了他们的 git 等等。有人可以帮助我进一步了解这一点,以便我可以成功上传机器人!谢谢!
尝试将这些放入 requirements.txt:
git+https://github.com/Rapptz/discord.py
dnspython==1.16.0
PyNaCl==1.3.0
async-timeout==3.0.1
此外,确保您的 txt 文件命名为 requirements(没有 .txt`)