Bash on Ubuntu on Windows 10 is using w3m to open URLs inside the terminal instead of opening Chrome or Edge. How can I get it to launch the Windows default web browser?
For example, the following code
webbrowser.open_new("http://www.youtube.com/watch?v=dQw4w9WgXcQ")
looks like this:
This is exactly the same as opening the page with
w3m http://www.youtube.com/watch?v=dQw4w9WgXcQ
This is on a fresh Win 10 installation and after I've enabled Bash (via the Windows Subsystem for Linux) and done the following:
$ 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
Yet
print webbrowser._tryorder
gives
['www-browser', 'w3m']
www-browser
is just another alias for w3m
, why is windows-default
not listed?
Previously, The same Python 2.7 code functioned as expected on a 32-bit Windows 10 machine running Git-Bash, so I don't think there are any issues with the python side of things.
Easy Fix:
This simple work-around works if you are running the latest WSL with Ubuntu 16.04 that comes with the current Windows Insider Preview Slow channel build (#14986). You don't have to run an xserver in the background, and you can launch your Windows browser of choice!
All you need to do is add the following lines to your
~/.bashrc file
(Chrome's default install location listed below as an example. Feel free to put the address to your desired browser):NOTE: when dealing with complex characters in addresses like spaces or (), you have to escape them with a "\".
Harder (Hackier) Fix:
Basically, Windows Subsystem for Linux (WSL) doesn't officially support GUI based programs. However, there is a workaround to run some GUI based Linux programs from WSL using xserver, see here: How to Run Graphical Linux Desktop Applications from Windows 10’s Bash Shell
If this does not work for you, you may need to also set the BROWSER environment variable, which is what I was trying to do when I found the GUI hack, see here: Google Earth and $BROWSER environment variable
Note:
Even though this "works" it will throw a few errors (example below) as it is starting, just wait and soon it will launch in an xserver window. For one of my python projects, it halted execution. To get around this, I could probably write in some error handling. I'd still be interested to hear if someone has a more elegant solution to the problem on older Windows 10 systems.