安装google,多试试
Posted 靠,疯了吧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装google,多试试相关的知识,希望对你有一定的参考价值。
对于谷歌Chrome32位版本,使用如下链接:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
对于64位版本可以使用如下链接下载:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
下载完后,运行如下命令安装。
sudo dpkg -i google-chrome*;
sudo apt-get -f install
可能出现的问题:
一:启动Chrome浏览器
- # google-chrome
这时会报错:
[31560:31560:0207/085601.085852:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
解决方法:
- # google-chrome --no-sandbox
仍会报错:
[email protected]:~# [0207/085735.495265:ERROR:nacl_helper_linux.cc(310)] NaCl helper process running without a sandbox!
Most likely you need to configure your SUID sandbox correctly
解决方法:
- # whereis google-chrome
- google-chrome: /usr/bin/google-chrome /usr/share/man/man1/google-chrome.1.gz
- # vim /usr/bin/google-chrome
将 exec -a "$0" "$HERE/chrome" "[email protected]" 改为
exec -a "$0" "$HERE/chrome" "[email protected]" --user-data-dir --no-sandbox
以后只要 google-chrome 就可以打开Chrome了
如果不行:可能就是缺少chromeDriver了
错误:
selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally (Driver info: chromedriver=2.34.522913 (36222509aa6e819815938cbf2709b4849735537c),platform=Linux 4.10.0-42-generic x86_64)
解决办法:
Start the Display before start the Chrome.
先执行一下两句安装命令(以ubuntu为例):
- pip install pyvirtualdisplay
- sudo apt-get install xvfb
然后添加如下代码:
- from pyvirtualdisplay import Display
- display = Display(visible=0, size=(800, 800))
- display.start()
- driver = webdriver.Chrome()
驱动映射表:
https://blog.csdn.net/zhanghua_ting/article/details/79498152
安装selenium
pip3 install selenium
以上是关于安装google,多试试的主要内容,如果未能解决你的问题,请参考以下文章
win7系统,使用不了google 和 firefox浏览器,能正常安装,但是一碰就死。系统重装也不行
如何在 Google Colab 上安装 PyTorch v1.0.0+?
本人在英国,国行机华为P9plus没root,下载Google Play后显示与Google服务器通信时出问题,怎么解决啊
google chrome浏览器看视频最上面总有一条绿条怎么解决?
如何从 google colab 的压缩文件夹中读取/导入训练和测试图像以进行多分类? gdrive 已安装到 gcolab