File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -813,15 +813,15 @@ def get_chrome() -> None:
813
813
if not cli_yes :
814
814
print (f"""
815
815
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 } """ )
818
817
response = input ("Do you want to proceed? [y/n] " )
819
818
if not response or response [0 ].lower () != "y" :
820
819
print ("Cancelled" )
821
820
return
822
821
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 )
824
823
print ("Chrome installed successfully." )
824
+ print (f"The Chrome executable is now located at: { exe_path } " )
825
825
826
826
827
827
__all__ = ["to_image" , "write_image" , "scope" , "full_figure_for_development" ]
You can’t perform that action at this time.
0 commit comments