我的python3的安装路径是:
C:\Users\Administrator\AppData\Local\Programs\Python\Python38
C:\Users\Administrator\AppData\Local\Programs\Python\Python38\python3.exe
C:\Users\Administrator\AppData\Local\Programs\Python\Python38\Scripts
C:\Users\Administrator\AppData\Local\Programs\Python\Python38\Scripts\pip3.exe
版本是3.8.10(win7系统下支持的最高版本),参考我的另一篇文章win7安装python3.8.10遇到的问题及解决办法和相关资源_小小爬虾的博客-CSDN博客
需要安装库:requests、bs4(BeautifulSoup)、undetected_chromedriver、selenium(webdriver) 、webdriver_manager。
一、升级pip3
进入C:\Users\Administrator\AppData\Local\Programs\Python\Python38路径下,
执行python3.exe -m pip install --upgrade pip --force-reinstall升级其pip
(也可能是python3.exe -m pip install --upgrade pip)
全貌参考我的另一篇文章记录一下python2和python3在同一台电脑上共存使用并安装各自的库以及各自在pycharm中使用的方法_小小爬虾的博客-CSDN博客
准备安装各类库,来到路径:
cd C:\Users\Administrator\AppData\Local\Programs\Python\Python38\Scripts
pip3 install requests
pip3 install undetected_chromedriver
pip3 install webdriver_manager
pip3 install Beautifulsoup4
完成。