8

我正在尝试从这个 Python Heroku 教程运行hello.py。运行此命令后我的问题开始了:. 即使我安装了Heroku Toolbelt ,我也收到以下错误:foreman start

工头不是内部或外部命令、可运行程序或批处理文件

所以我将工头文件(版本 0.63.0)的位置添加到我的路径中:

C:\Program Files (x86)\Heroku\ruby-1.9.2\bin

并重新启动命令提示符并重新运行foreman start。现在,我收到此错误:

Microsoft Windows [Version 6.2.9200]
(c) 2012 Microsoft Corporation. All rights reserved.

C:\Users\me\Desktop\Code\heroku_python_app>venv\Scripts\activate
(venv) C:\Users\me\Desktop\Code\heroku_python_app>foreman start
Bad file descriptor
C:/Program Files (x86)/Heroku/ruby-1.9.2/lib/ruby/gems/1.9.1/gems/foreman-0.63.0
/lib/foreman/engine.rb:372:in `read_nonblock'
C:/Program Files (x86)/Heroku/ruby-1.9.2/lib/ruby/gems/1.9.1/gems/foreman-0.63.0
/lib/foreman/engine.rb:372:in `block (2 levels) in watch_for_output'
C:/Program Files (x86)/Heroku/ruby-1.9.2/lib/ruby/gems/1.9.1/gems/foreman-0.63.0
/lib/foreman/engine.rb:368:in `loop'
C:/Program Files (x86)/Heroku/ruby-1.9.2/lib/ruby/gems/1.9.1/gems/foreman-0.63.0
/lib/foreman/engine.rb:368:in `block in watch_for_output'
12:57:38 web.1  | exited with code 1
12:57:38 system | sending SIGKILL to all processes

(venv) C:\Users\me\Desktop\Code\heroku_python_app>

你好.py

import os
from flask import Flask

app = Flask(__name__)

@app.route('/')
def hello():
    return 'Hello World'

档案

web: gunicorn hello:app

编辑 1

阅读此答案后,我执行了以下操作:

gem uninstall foreman   
gem install foreman -v 0.61.0

但是,当我重新运行时,foreman start我现在收到此错误

(venv) C:\Users\me\Desktop\Code\heroku_python_app>foreman start
14:13:20 web.1  | started with pid 252
14:13:20 web.1  | exited with code 1
14:13:20 system | sending SIGKILL to all processes
14:13:20        | Traceback (most recent call last):
14:13:20        |   File "C:\Users\me\Desktop\Code\heroku_python_app\venv\Scri
pts\gunicorn-script.py", line 9, in <module>

(venv) C:\Users\me\Desktop\Code\heroku_python_app>

任何帮助将不胜感激。提前致谢。

4

1 回答 1

6

我通过运行以下命令解决了这个问题:

gem uninstall foreman
gem install foreman -v 0.61.0 [EDIT]

正如这里提到的。

于 2013-11-23T18:17:08.343 回答