Debian安装Chrome

本文完全原创,转载请说明出处,希望对大家有用。

本篇博客是个人总结,一方面以便日后查看,另一方面希望能为其他人提供一些便利。

正文

新安装的Debian需要安装个chrome翻墙,但从google网站下载chrome对应的debian版本后,安装会报错
(Reading database ... 148518 files and directories currently installed.)
Preparing to replace google-chrome-stable 13.0.782.107-r94237 (using .../google-chrome-stable_current_i386.deb) ...
Unpacking replacement google-chrome-stable ...
dpkg: dependency problems prevent configuration of google-chrome-stable:
google-chrome-stable depends on libcurl3; however:
Package libcurl3 is not installed.
dpkg: error processing google-chrome-stable (--install):
dependency problems - leaving unconfigured
Processing triggers for menu ...
Processing triggers for man-db ...
Errors were encountered while processing:
google-chrome-stable

使用apt-get -f install解决dependency后,重新安装仍然报错。

想到可能是版本的问题,先运行命令:apt-get update

完成后重新运行apt-get -f install安装libcurl3

再运行dpkg --install google-chrome-stable 13.0.782.107-r94237

没有遇到问题,安装完成

原文地址:https://www.cnblogs.com/renzh/p/3541155.html