Ich versuche, meine Django-App auf Heroku mithilfe der folgenden Anleitung zu implementieren: https://devcenter.heroku.com/articles/deploying-python. Ich erreichte den Punkt, an dem ich zu schaffen und die „requirements.txt“ Datei mit folgendem Befehl zu füllen:pip install requirements.txt Problem bei der Bereitstellung von Django App auf Heroku
$ pip install -r requirements.txt
Allerdings bekomme ich folgende Fehlermeldung
You must give at least one requirement to install (see "pip help install")
Ich habe versucht, zwei andere Befehle
$ pip install -r requirements.txt requirements.txt
$ pip install --allow-all-external requirements.txt
aber in beiden Fällen ich folgende Fehlermeldung
erhaltenCollecting requirements.txt
/home/bastien/python/framework/scrapping/venv/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
SNIMissingWarning
/home/bastien/python/framework/scrapping/venv/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Könnten Sie mir bitte sagen, wo das Problem herkommt, wie ich es mit den entsprechenden Befehlszeilen lösen kann oder ob es eine Möglichkeit gibt, die requirements.txt-Datei auf andere Weise zu füllen? Vielen Dank.
Dies bedeutet einfach, dass Ihre Anforderungsdatei leer ist. Sie müssen die Liste der Anforderungen dort setzen! – e4c5