Windows下使用pip安装模块发生“failed with error code 1”的解决方法

Windows下Python安装部分模块时出错,错误代码类似于下面这种:

Command "f:\python\python36\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\WONDER~1\\AppData\\Local\\Temp\\pip-build-90gvzc6m\\Twisted\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\WONDER~1\AppData\Local\Temp\pip-2xl1_rnm-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\WONDER~1\AppData\Local\Temp\pip-build-90gvzc6m\Twisted\

其后提示缺少Microsoft Build Tools 14,但是安装之后依然报同样的错误。
Google无果,偶然间使用关键词“failed with error code 1”搜索,找到蹩脚侦探的文章windows下使用pip安装模块发生“failed with error code 1”的解决方法,终于解决此问题,赶紧拿小本本记录下来。

  1. 先试试wheel文件安装,虽然一般来说安装不上?;
  2. 再看下具体是哪个依赖包安装出错,pip安装;
  3. 如果还是不行就只能wheel安装依赖包;
  4. 失败就重复2、3步,直到成功安装关键依赖包。
    祝好运?

你可能感兴趣的:(Windows下使用pip安装模块发生“failed with error code 1”的解决方法)