在kali上安装Google-Chrome

lxx249
2024-12-03 / 0 评论 / 0 阅读 / 正在检测是否收录...

chromedp google-chrome executable file not found in $path

问题描述

chromedp 是一个用来操作 Chrome 浏览器的库,在使用它之前需要先安装 google-chrome 浏览器。如果出现 "chromedp google-chrome executable file not found in ���ℎ"的错误,通常是因为没有在系统的path"的错误,通常是因为没有在系统的PATH 环境变量里找到 google-chrome 的可执行文件。

解决办法

在kali系统安装Google Chrome

  1. 首先,使用 wget 命令来下载最新版本的 Google Chrome 的 debian 安装包。
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
  1. 在 Kali Linux 安装 Google Chrome 最容易的方法就是使用 gdebi ,它会自动帮你下载所有的依赖包。
# 先安装gdebi
apt install gdebi-core
# 再继续安装Chrome
gdebi google-chrome-stable_current_amd64.deb
0

评论 (0)

取消