ultralytics / google-images-download

Google/Bing Images Web Downloader
https://ultralytics.com
GNU Affero General Public License v3.0
298 stars 85 forks source link

Run without chrome driver installation: Solution #11

Open rachtibat opened 3 years ago

rachtibat commented 3 years ago

Hi, you could use

from webdriver_manager.chrome import ChromeDriverManager

        chromedriver = ChromeDriverManager().install()

instead of specifying the path to the chrome driver. Makes it easier (;

glenn-jocher commented 10 months ago

@rachtibat hi there! Thanks for the suggestion! We prefer not to include external dependencies within the repo. We recommend leveraging executable path options or installing the driver separately. For more details, you can refer to the Ultralytics Docs at https://docs.ultralytics.com. Appreciate your input!