2016-11-05 9 views
1

pythonanywhereでセレニウムを使いたいです。 これはpythonanywhereのエラーログです。pythonanywhereからセレンを使用していますか?

Traceback (most recent call last): 
    File "/bin/user_wsgi_wrapper.py", line 154, in __call__ 
    app_iterator = self.app(environ, start_response) 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/app.py", line 2000, in __call__ 
    return self.wsgi_app(environ, start_response) 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/app.py", line 1991, in wsgi_app 
    response = self.make_response(self.handle_exception(e)) 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/app.py", line 1567, in handle_exception 
    reraise(exc_type, exc_value, tb) 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/_compat.py", line 33, in reraise 
    raise value 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/app.py", line 1988, in wsgi_app 
    response = self.full_dispatch_request() 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/app.py", line 1641, in full_dispatch_request 
    rv = self.handle_user_exception(e) 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/app.py", line 1544, in handle_user_exception 
    reraise(exc_type, exc_value, tb) 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/_compat.py", line 33, in reraise 
    raise value 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/app.py", line 1639, in full_dispatch_request 
    rv = self.dispatch_request() 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/flask/app.py", line 1625, in dispatch_request 
    return self.view_functions[rule.endpoint](**req.view_args) 
    File "/home/downtownhub/odermysite/minitwit.py", line 409, in ordercolect 
    driver = webdriver.Firefox() 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/selenium/webdriver/firefox/webdriver.py", line 135, in __init__ 
    self.service.start() 
    File "/home/downtownhub/odermysite/env/lib/python3.4/site-packages/selenium/webdriver/common/service.py", line 71, in start 
    os.path.basename(self.path), self.start_error_message) 
selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH. 

パス( '/ home/downtownhub/odermysite/env/bin')にgeckodriveファイルを追加しました。 でも同じエラーが発生します。 私はそれをどのように解決できますか?

+0

こんにちは、Firefoxをどうにかアップグレードしましたか?あなたが標準のPythonAnywhereバージョンのfirefoxを使用している場合、セレンはgeckodriverを要求すべきではありません。 – hwjp

+0

@hwjp no ..私は間違ったものに触れるとFirefoxをアップグレードしませんでした。 Firefoxのpythonanywhereバージョンでは、その標準のdeafultの変更ですか?可愛い、私はそれを試してみる –

答えて

2

ああ、私はあなたがvirtualenvを使用しているのを見ています。 PythonAnywhereは、最新のセレン/ geckodriverと互換性のない古いバージョンのFirefox(v17)を使用しています。セレン2に戻る:

./env/bin/pip install "selenium<3" 
関連する問題