We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have this in my ~/.jupyter/jupyter_notebook_config.py:
~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.browser = '/usr/bin/google-chrome'
But when I run voila somenotebook.ipynb, it stubbornly uses the default browser:
voila somenotebook.ipynb
START /usr/bin/firefox ...
I don't have enough privilege to change the system default browser on this machine, so how do I tell voila to use what I have set for jupyter?
voila
jupyter
Hope you can help. Thanks!
The text was updated successfully, but these errors were encountered:
Thanks @pllim.
Maybe something like this would work?
voila --Voila.browser=/usr/bin/google-chrome
Or in a voila.py file:
voila.py
c.Voila.browser = '/usr/bin/google-chrome'
Sorry, something went wrong.
Yes, thank you!
No branches or pull requests
I have this in my
~/.jupyter/jupyter_notebook_config.py
:But when I run
voila somenotebook.ipynb
, it stubbornly uses the default browser:I don't have enough privilege to change the system default browser on this machine, so how do I tell
voila
to use what I have set forjupyter
?Hope you can help. Thanks!
The text was updated successfully, but these errors were encountered: