mac 下 pip 安装 selenium 成功,提示 no module named selenium

原因:

系统自带 python 搜索路径中没有 `/usr/local/python`

查看系统搜索路径信息:

1
2
3
python
>>> import sys
>>> sys.path

查看pip信息:

1
2
python -m pip --version
pip --version

解决

1
brew link python@2