Skip to content

Commit 651eafd

Browse files
committed
print exe path after installing Chrome
1 parent 0799bf5 commit 651eafd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plotly/io/_kaleido.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -813,15 +813,15 @@ def get_chrome() -> None:
813813
if not cli_yes:
814814
print(f"""
815815
Plotly will install a copy of Google Chrome to be used for generating static images of plots.
816-
Chrome will be installed at: {chrome_install_path}
817-
""")
816+
Chrome will be installed at: {chrome_install_path}""")
818817
response = input("Do you want to proceed? [y/n] ")
819818
if not response or response[0].lower() != "y":
820819
print("Cancelled")
821820
return
822821
print("Installing Chrome for Plotly...")
823-
kaleido.get_chrome_sync(path=chrome_install_path)
822+
exe_path = kaleido.get_chrome_sync(path=chrome_install_path)
824823
print("Chrome installed successfully.")
824+
print(f"The Chrome executable is now located at: {exe_path}")
825825

826826

827827
__all__ = ["to_image", "write_image", "scope", "full_figure_for_development"]

0 commit comments

Comments
 (0)