python - 尝试部署到heroku,但不断遭到拒绝-LMLPHP我正在尝试在heroku上部署,这似乎是自编程以来我处理过的最复杂的问题。我得到一个错误,我没有procfile,我有。它只被命名为procfile。不是procfile或procfile.txt。我跑了之后

 git push heroku master

我得到以下错误
 Counting objects: 8524, done.
    Delta compression using up to 4 threads.
    Compressing objects: 100% (7522/7522), done.
    Writing objects: 100% (8524/8524), 14.00 MiB | 2.67 MiB/s, done.
    Total 8524 (delta 2214), reused 0 (delta 0)
    remote: Compressing source files... done.
    remote: Building source:
    remote:
    remote: -----> Python app detected
    remote:  !     Warning: Your application is missing a Procfile. This file tells Heroku how to run your application.
    remote:  !     Learn more: https://devcenter.heroku.com/articles/procfile
    remote: -----> Installing python-2.7.11
    remote:      $ pip install -r requirements.txt
    remote:        Collecting beautifulsoup4==4.4.1 (from -r requirements.txt (line 1))
    remote:          Downloading beautifulsoup4-4.4.1-py2-none-any.whl (81kB)
    remote:        Collecting dj-database-url==0.4.0 (from -r requirements.txt (line 2))
    remote:          Downloading dj-database-url-0.4.0.tar.gz
    remote:        Collecting dj-static==0.0.6 (from -r requirements.txt (line 3))
    remote:          Downloading dj-static-0.0.6.tar.gz
    remote:        Collecting Django==1.9.4 (from -r requirements.txt (line 4))
    remote:          Downloading Django-1.9.4-py2.py3-none-any.whl (6.6MB)
    remote:        Collecting django-crispy-forms==1.6.0 (from -r requirements.txt (line 5))
    remote:          Downloading django_crispy_forms-1.6.0-py2-none-any.whl (178kB)
    remote:        Collecting django-haystack==2.4.1 (from -r requirements.txt (line 6))
    remote:          Downloading django_haystack-2.4.1-py2-none-any.whl (95kB)
    remote:        Collecting django-taggit==0.18.0 (from -r requirements.txt (line 7))
    remote:          Downloading django_taggit-0.18.0-py2.py3-none-any.whl
    remote:        Collecting django-toolbelt==0.0.1 (from -r requirements.txt (line 8))
    remote:          Downloading django-toolbelt-0.0.1.tar.gz
    remote:        Collecting gunicorn==19.4.5 (from -r requirements.txt (line 9))
    remote:          Downloading gunicorn-19.4.5-py2.py3-none-any.whl (112kB)
    remote:        Collecting Pillow==3.1.1 (from -r requirements.txt (line 10))
    remote:          Downloading Pillow-3.1.1.tar.gz (10.1MB)
    remote:        Collecting psycopg2==2.6.1 (from -r requirements.txt (line 11))
    remote:          Downloading psycopg2-2.6.1.tar.gz (371kB)
    remote:        Collecting pysolr==3.4.0 (from -r requirements.txt (line 12))
    remote:          Downloading pysolr-3.4.0-py2.py3-none-any.whl
    remote:        Collecting pytz==2016.1 (from -r requirements.txt (line 13))
    remote:          Downloading pytz-2016.1-py2.py3-none-any.whl (476kB)
    remote:        Collecting requests==2.9.1 (from -r requirements.txt (line 14))
    remote:          Downloading requests-2.9.1-py2.py3-none-any.whl (501kB)
    remote:        Collecting static3==0.6.1 (from -r requirements.txt (line 15))
    remote:          Downloading static3-0.6.1.tar.gz
    remote:        Collecting whitenoise==3.0 (from -r requirements.txt (line 16))
    remote:          Downloading whitenoise-3.0-py2.py3-none-any.whl
    remote:        Installing collected packages: beautifulsoup4, dj-database-url, static3, dj-static, Django, django-crispy-forms, django-haystack, django-taggit, psycopg2, gunicorn, django-toolbelt, Pillow, requests, pysolr, pytz, whitenoise
    remote:          Running setup.py install for dj-database-url: started
    remote:            Running setup.py install for dj-database-url: finished with status 'done'
    remote:          Running setup.py install for static3: started
    remote:            Running setup.py install for static3: finished with status 'done'
    remote:          Running setup.py install for dj-static: started
    remote:            Running setup.py install for dj-static: finished with status 'done'
    remote:          Running setup.py install for psycopg2: started
    remote:            Running setup.py install for psycopg2: finished with status 'done'
    remote:          Running setup.py install for django-toolbelt: started
    remote:            Running setup.py install for django-toolbelt: finished with status 'done'
    remote:          Running setup.py install for Pillow: started
    remote:            Running setup.py install for Pillow: finished with status 'done'
    remote:        Successfully installed Django-1.9.4 Pillow-3.1.1 beautifulsoup4-4.4.1 dj-database-url-0.4.0 dj-static-0.0.6 django-crispy-forms-1.6.0 django-haystack-2.4.1 django-taggit-0.18.0 django-toolbelt-0.0.1 gunicorn-19.4.5 psycopg2-2.6.1 pysolr-3.4.0 pytz-2016.1 requests-2.9.1 static3-0.6.1 whitenoise-3.0
    remote:
    remote:      $ python mysite/manage.py collectstatic --noinput
    remote:        Traceback (most recent call last):
    remote:          File "mysite/manage.py", line 10, in <module>
    remote:            execute_from_command_line(sys.argv)
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 353, in execute_from_command_line
    remote:            utility.execute()
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 345, in execute
    remote:            self.fetch_command(subcommand).run_from_argv(self.argv)
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 348, in run_from_argv
    remote:            self.execute(*args, **cmd_options)
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 399, in execute
    remote:            output = self.handle(*args, **options)
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 176, in handle
    remote:            collected = self.collect()
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 98, in collect
    remote:            for path, storage in finder.list(self.ignore_patterns):
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/finders.py", line 112, in list
    remote:            for path in utils.get_files(storage, ignore_patterns):
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/utils.py", line 28, in get_files
    remote:            directories, files = storage.listdir(location)
    remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/files/storage.py", line 299, in listdir
    remote:            for entry in os.listdir(path):
    remote:        OSError: [Errno 2] No such file or directory: '/app/mysite/mysite/static'
    remote:
    remote:  !     Error while running '$ python mysite/manage.py collectstatic --noinput'.
    remote:        See traceback above for details.
    remote:
    remote:        You may need to update application code to resolve this error.
    remote:        Or, you can disable collectstatic for this application:
    remote:
    remote:           $ heroku config:set DISABLE_COLLECTSTATIC=1
    remote:
    remote:        https://devcenter.heroku.com/articles/django-assets
    remote:
    remote:  !     Push rejected, failed to compile Python app
    remote:
    remote: Verifying deploy...
    remote:
    remote: !       Push rejected to alt-vera.

我不知道是什么问题。我在谷歌上搜索了一下,似乎没有一个解决方案奏效。另外,在本地我使用的是Python3.5,但是在错误消息中我看到
 Installing python-2.7.11 Why is that. Could this be part of the error

编辑这是我的程序文件
web: gunicorn mysite.wsgi:application --log-file -

编辑:在我一遍又一遍地做同样的事情之后,它起了作用
python - 尝试部署到heroku,但不断遭到拒绝-LMLPHP
但现在我收到了另一条错误信息
 OSError: [Errno 2] No such file or directory: '/app/mysite/mysite/static'
    remote:
    remote:  !     Error while running '$ python mysite/manage.py collectstatic --noinput'.
    remote:        See traceback above for details.
    remote:
    remote:        You may need to update application code to resolve this error.
    remote:        Or, you can disable collectstatic for this application:
    remote:
    remote:           $ heroku config:set DISABLE_COLLECTSTATIC=1
    remote:
    remote:        https://devcenter.heroku.com/articles/django-assets
    remote:
    remote:  !     Push rejected, failed to compile Python app
    remote:
    remote: Verifying deploy....
    remote:
    remote: !       Push rejected to alt-vera.
    remote:
    To https://git.heroku.com/alt-vera.git

最佳答案

您的应用程序缺少procfile添加它,然后重试。
帮助https://devcenter.heroku.com/articles/procfile
procfile示例

web:python manage.py runserver
web: gunicorn your-app-name.wsgi --log-file -
heroku ps:scale web=1

关于python - 尝试部署到heroku,但不断遭到拒绝,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36300215/

10-11 23:02