1.情形:
在安装模块的时候,会遇到安装未加载完,就大片红色报错的情况。再次使用pip install 进行安装,还是会出现这种情况。
2.解决方案
(1)【常规性方法】pip install toad
【注意:个别时候按照此方式会安装成功,有时候会大片红色报错】
(2) 【使用清华镜像安装方法,可以加快安装速度】
【法1]】pip install 模块 -i 镜像链接
【法2】 pip install -i 镜像链接 模块
例子:安装toad模块
【法1】pip install toad -i https://pypi.tuna.tsinghua.edu.cn/simple
【法2】pip install -i https://pypi.tuna.tsinghua.edu.cn/simple toad