Selenium 之 Mac 环境下 Python 安装 selenium 踩坑记录

作为一个Python初级菜鸟 ,以下是我Mac 环境下使用Python 安装selenium 的踩坑记录。

  1. pip install selenium 报错SyntaxError: invalid syntax

研究了一圈发现pip 安装 是不需要在Python环境下输入。


忘截图了,网上找了个同款报错

用pip安装时都要在cmd命令行里启动的,而在python中无法运行。
退出python运行环境就再执行pip可以了。

然后cmd 直接输入pip install selenium
遇到了第二个问题..

2 . cmd 内直接输入 pip install selenium 报错:pip command not found

经百度得知 :pip是python的包管理工具,在Python的安装包中,easy_install.py是默认安装的,而pip需要我们手动安装。
输入 sudo easy_install pip 安装。

安装pip

安装完之后 再输入 pip install selenium
遇到了第三个问题..

报错截图

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support

大概就是说需要升级Python2,但其实我已经安装过了Python3。
然后又百度了一下,才知道是我需要安装Python3 环境下的pip 包..

Python2 下的pip安装:
打开终端:sudo easy_install pip
Python3 下的pip安装:
打开终端:curl https://bootstrap.pypa.io/get-pip.py|python3

安装完后,查看版本
pip --version

安装Python3下的pip

环境都准备好了,可以安装selenium 了。输入 pip install selenium

这次安装成功了

你可能感兴趣的:(Selenium 之 Mac 环境下 Python 安装 selenium 踩坑记录)