4

Windows 10 上的 Ubuntu 上的 Bash 使用w3m在终端内打开 URL,而不是打开 Chrome 或 Edge。如何让它启动 Windows 默认网络浏览器?

例如下面的代码

webbrowser.open_new("http://www.youtube.com/watch?v=dQw4w9WgXcQ")

看起来像这样:

网页在终端中显示为文本

这与打开页面完全相同

w3m http://www.youtube.com/watch?v=dQw4w9WgXcQ

这是在全新的 Win 10 安装中,在我启用 Bash(通过适用于 Linux 的 Windows 子系统)并完成以下操作后:

$ sudo apt update && sudo apt upgrade && sudo apt dist-upgrade
$ sudo apt install build-essential
$ sudo apt install python-pip python-dev
$ sudo pip install --upgrade pip

然而

print webbrowser._tryorder

['www-browser', 'w3m']

www-browser只是另一个别名w3m,为什么windows-default没有列出来?

以前,相同的 Python 2.7 代码在运行 Git-Bash 的 32 位 Windows 10 机器上按预期运行,所以我认为 Python 方面没有任何问题。

4

2 回答 2

10

轻松修复:

如果您使用当前 Windows Insider Preview 慢速通道构建 (#14986) 附带的 Ubuntu 16.04 运行最新的 WSL,则此简单的解决方法有效。您不必在后台运行 xserver,并且可以启动您选择的 Windows 浏览器!

您需要做的就是将以下行添加到您的~/.bashrc file(下面列出的 Chrome 的默认安装位置作为示例。请随意将地址放入您想要的浏览器):

export DISPLAY=:0
export BROWSER=/mnt/c/Program\ Files\ \(x86\)/Google/Chrome/Application/chrome.exe

注意:在处理诸如空格或 () 之类的地址中的复杂字符时,您必须使用“\”对它们进行转义。

更难(黑客)修复:

基本上,Linux 的 Windows 子系统 (WSL) 不正式支持基于 GUI 的程序。但是,有一种解决方法可以使用 xserver 从 WSL 运行一些基于 GUI 的 Linux 程序,请参见此处:如何从 Windows 10 的 Bash Shell 运行图形 Linux 桌面应用程序

如果这对您不起作用,您可能还需要设置 BROWSER 环境变量,这是我在发现 GUI hack 时尝试做的事情,请参见此处:Google Earth and $BROWSER environment variable

笔记:

即使这个“有效”,它会在启动时抛出一些错误(下面的示例),只需等待它很快就会在 xserver 窗口中启动。对于我的一个 python 项目,它停止了执行。为了解决这个问题,我可能会编写一些错误处理。我仍然很想知道是否有人对旧 Windows 10 系统上的问题有更优雅的解决方案。

Nathaniel@DESKTOP-NAGL0DJ:~$ libkmod: ERROR ../libkmod/libkmod-module.c:1619 kmod_module_new_from_loaded: could not open /proc/modules: No such file or directory
Error: could not get list of modules: No such file or directory
[144:144:0103/123322:FATAL:render_sandbox_host_linux.cc(40)] Check failed: 0 == shutdown(renderer_socket_, SHUT_RD). shutdown: Invalid argument
#0 0x7f41e1522a2e base::debug::StackTrace::StackTrace()
#1 0x7f41e153cf87 logging::LogMessage::~LogMessage()
#2 0x7f41e153d1a9 logging::ErrnoLogMessage::~ErrnoLogMessage()
#3 0x7f41df5ace45 content::RenderSandboxHostLinux::Init()
#4 0x7f41df36c65a content::BrowserMainLoop::EarlyInitialization()
#5 0x7f41df36f7ff <unknown>
#6 0x7f41df368e1d content::BrowserMain()
#7 0x7f41df2d73d4 <unknown>
#8 0x7f41df2d6611 content::ContentMain()
#9 0x7f41e1cf98e8 <unknown>
#10 0x7f41d4681f45 __libc_start_main
#11 0x7f41e1cf97ba <unknown>

Aborted (core dumped)
Sandbox: unexpected multithreading found; this prevents using namespace sandboxing.

(firefox:30): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
于 2017-01-03T21:25:53.563 回答
0

安装 wslu(WSL 的实用程序集合)https://github.com/wslutilities/wslu#feature,然后将这两行添加到 shell 的 RC 文件中,例如 .bashrc 或 .zshrc:

export DISPLAY=:0
export BROWSER=/usr/bin/wslview

从您的 shell 运行这两个命令以使其立即工作或注销并重新登录。

于 2022-02-21T11:11:11.293 回答