为什么 bash (WSL) 使用 w3m 作为默认浏览器?

Why is bash (WSL) using w3m as it's default browser?

Bash on Ubuntu on Windows 10 使用 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 代码在 32 位 Windows 10 机器上按预期运行 运行 Git-Bash,所以我不要认为 python 方面有任何问题。

轻松修复:

如果您使用 Ubuntu 16.04 与当前 Windows Insider Preview 慢速通道构建 (#14986) 一起使用最新的 WSL,那么这个简单的变通方法就有效。您不必在后台 运行 xserver,您可以启动您选择的 Windows 浏览器!

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

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

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

更难(Hackier)修复:

基本上,Windows Linux (WSL) 的子系统不正式支持基于 GUI 的程序。但是,对于使用 xserver 的 WSL 运行 一些基于 GUI 的 Linux 程序,有一个解决方法,请参见此处:How to Run Graphical Linux Desktop Applications from Windows 10’s Bash Shell

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

注:

尽管这个 "works" 它会在启动时抛出一些错误(下面的示例),请稍等,它很快就会在 xserver window 中启动。对于我的 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.

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

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

运行 来自您的 shell 的两个命令,使其立即运行或注销并重新登录。