Theoretically, let's say you have a brand new laptop that is fully functional but has no built-in browser. (You also don't have a phone or any other separate device.) How would you download a web browser without being able to see the web?
In Windows you can use FTP in Explorer. Or, if you want to do it from the command line, type in Powershell:<p>>Invoke-WebRequest -Uri $url -OutFile $output<p>On *nix you might have curl or wget installed.<p>On Android and iOS use their respective app stores.
Most of the curl/powershell answers assume you know the URL to download it from, which might not be correct since they are usually long and not easy to memorize.<p>However, considering the scenario on the question, I would assume that browser vendors would create very easy-to-remember URLs so you could get their browser without having to memorize 100-character-long URL e.g. mozilla.org/firefox.[exe,bin,sh,deb]
If you're stuck on windows maybe you could try this:<p>curl -o fi.exe -L -C - "<a href="https://download.mozilla.org/?product=firefox-stub&os=win64&lang=en-US"" rel="nofollow">https://download.mozilla.org/?product=firefox-stub&os=win64&...</a> && ./fi.exe
Debian based OS is easy: apt install firefox<p>Other Linux OS, consult your package manager of choice.<p>Mac should have curl or wget that you can use (plus safari, but we'll ignore that).<p>Windows has Invoke-WebRequest in Powershell that you can use (plus IE/Edge, but we'll ignore).<p>You can do a Google search with those command line tools to find the firefox install page and download the installer.<p>What prompted this question? Real problem?
Keep a liveboot USB handy with OS that has a browser. Boot with it.
Save a few installers for common browsers on a USB/SDC/local NAS etc.
If your on *nix, wget/curl/ftp/scp/sftp the files from a known location.
You can do the same in Windows in powershell or CMD
Some devices that claim not to have a browser do actually have a browser, as it is used solely for Wi-Fi captive portals.<p>I seem to remember that the Nintendo Switch has one of these 'hidden' browsers.
>new laptop that is fully functional but has no built-in browser<p>doesnt exist, either its fully functional and has a browser, or its missing operating system.