作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
这是一个天真的问题,但是如何将 firefox 添加到 Amazon Web Service Linux 实例上的系统 PATH 中?我应该澄清一下,我将 firefox 安装到 /home/firefox
而不是 /usr/bin
。谢谢!当我尝试加载 firefox webdriver(导入 selenium
之后)时,我目前遇到以下错误:
>>> driver = webdriver.Firefox()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/site-packages/selenium/webdriver/firefox/webdriver.py", line 64, in __init__
self.binary = capabilities.get("binary") or FirefoxBinary()
File "/usr/local/lib/python2.7/site-packages/selenium/webdriver/firefox/firefox_binary.py", line 47, in __init__
self._start_cmd = self._get_firefox_start_cmd()
File "/usr/local/lib/python2.7/site-packages/selenium/webdriver/firefox/firefox_binary.py", line 163, in _get_firefox_start_cmd
" Please specify the firefox binary location or install firefox")
RuntimeError: Could not find firefox in your system PATH. Please specify the firefox binary location or install firefox
最佳答案
将以下内容添加到您的~/.profile
:
export PATH="$PATH:/home/firefox"
或者到 ~/.bashrc
,或者 ~/.bash_profile
,如果 shell 是 Bash。
关于linux - 如何在 Amazon Web Service 的 Linux 实例上将 firefox 添加到系统 PATH?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37096898/
我是一名优秀的程序员,十分优秀!