ImportError: No module named 'selenium'

后端 未结 18 2242
时光取名叫无心
时光取名叫无心 2020-12-03 00:54

I\'m trying to write a script to check a website. It\'s the first time I\'m using selenium. I\'m trying to run the script on a OSX system. Although I checked in /Library/Pyt

18条回答
  •  萌比男神i
    2020-12-03 01:00

    install urllib3

    !pip3 install urllib3
    
    import urllib3
    

    than install it

    !pip3 install selenium
    
    import selenium
    

提交回复
热议问题