问题描述
pip install selenium安装报错:Could not build wheels for cryptography which use PEP 517 and cannot be installed directly。

原因分析:
pip未安装或者未更新。
解决方案:
方法一:使用easy_install -U
pip升级pip。

方法二:使用python -m pip install -U --force-reinstall pip
强制安装pip。
上述两种方式任一即可,博主使用第一种就已经成功了。
