如何找到特定应用程序(Google Chrome)的路径?

如何找到特定应用程序(Google Chrome)的路径?

我的笔记本电脑上下载了 Google Chrome,我想找到它与 Windows 路径的比较位置,主要用于文本转语音项目。

在 Windows 上,它位于此处:

chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'

如何在 Linux 上获取路径?我试过:

(MoodBotEnv) mike@mike-thinks:~/Programing/Rasa/moodbot$ which chrome
(MoodBotEnv) mike@mike-thinks:~/Programing/Rasa/moodbot$ which google*
(MoodBotEnv) mike@mike-thinks:~/Programing/Rasa/moodbot$ where google*
No command 'where' found, did you mean:
 Command 'gwhere' from package 'gwhere' (universe)
where: command not found

并且左上角的“搜索您的计算机”按钮也没有提供路径。

答案1

如果您已经安装了稳定版的 Google Chrome,请运行以下命令来查找其位置

whereis google-chrome-stable

或者

which google-chrome-stable

相关内容