Unable to start Jupyter lab or Jupyter notebook in a browser

You have to give your browser (“google-chrome-stable” in this case) a string format argument (%s) in order to pass it the notebook’s URL:

jupyter lab --browser="google-chrome-stable %s"

or, if you prefer opening chrome in app mode:

jupyter lab --browser="google-chrome-stable --app=%s"
1 Like