Исполняемый файл 'phantomjs' может иметь неправильные разрешения - PullRequest
0 голосов
/ 13 сентября 2018

Этот скрипт отлично работает в облачной службе Google.Но я получаю сообщение об ошибке в Amazon Web Service EC2: (операционная система: Linux 64bit)

selenium.common.exceptions.WebDriverException: Message: 'phantomjs' executable may have wrong permissions.

Полный код:

 /usr/local/lib/python3.7/site-packages/selenium/webdriver/phantomjs/webdriver.py:49: UserWarning: Selenium support for PhantomJS has been deprecated, please use headless versions of Chrome or Firefox instead
  warnings.warn('Selenium support for PhantomJS has been deprecated, please use headless '
Traceback (most recent call last):
  File "/usr/local/lib/python3.7/site-packages/selenium/webdriver/common/service.py", line 76, in start
    stdin=PIPE)
  File "/usr/lib64/python3.7/subprocess.py", line 756, in __init__
    restore_signals, start_new_session)
  File "/usr/lib64/python3.7/subprocess.py", line 1499, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
PermissionError: [Errno 13] Permission denied: '/usr/local/share/phantomjs-2.1.1-linux-x86_64/bin/phantomjs'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "turkish.py", line 114, in <module>
    bot = TransBot()
  File "turkish.py", line 13, in __init__
    self.driver = webdriver.PhantomJS(executable_path='/usr/local/share/phantomjs-2.1.1-linux-x86_64/bin/phantomjs')
  File "/usr/local/lib/python3.7/site-packages/selenium/webdriver/phantomjs/webdriver.py", line 56, in __init__
    self.service.start()
  File "/usr/local/lib/python3.7/site-packages/selenium/webdriver/common/service.py", line 88, in start
    os.path.basename(self.path), self.start_error_message)
selenium.common.exceptions.WebDriverException: Message: 'phantomjs' executable may have wrong permissions.

Я пытаюсь переместить '/ usr / local / bin' иФайл / usr / local / share phantomjs.Та же ошибка.Что ты предлагаешь?Извините мой английский.

1 Ответ

0 голосов
/ 13 сентября 2018

изменить разрешения, чтобы он был исполняемым.

$ chmod a+x phantomsjs

...