我正在尝试在Windows 10机器上安装channels
。我不断收到以下错误:
$ pip install --user channels
... Stuff here
building 'twisted.test.raiser' extension
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/
----------------------------------------
Command ""c:\program files (x86)\python37-32\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\uscs\\AppData\\Local\\Temp\\pip-install-tgzm6i1z\\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\uscs\AppData\Local\Temp\pip-record-d1l_mx2x\install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in C:\Users\uscs\AppData\Local\Temp\pip-install-tgzm6i1z\twisted\
大量搜索SO和Internet上其他地方的信息使我离答案越来越近。这是我尝试过的:
已安装的VS构建工具。我在该主题上发现的几乎所有内容都已过时,并且与VS 2015有关,所以我在这里有点盲目。错误消息不足以说出我需要的众多工具中的 个,所以这是我已经安装的工具:
在其他阅读中,我读到有时需要升级setuptools
,所以我做到了。
尽管对其他问题有何回答,上述任何内容均未产生任何作用。
怎么了?我主要是Linux用户,因此Windows问题往往使我感到困惑。
答案 0 :(得分:0)
我最近也遇到了类似的问题,并且通过执行this得以解决,基本上是:
安装Visual Studio 2017的构建工具,选择工作负载“ Visual C ++构建工具”,然后选中“ C ++ / CLI支持”选项和“用于桌面的VC ++ 2015.3 v14.00(v140)工具集”
希望有帮助
答案 1 :(得分:0)
pip install -U <package_name>
更新软件包
-U
标志表示--upgrade
?有关更多详细信息,请检查this answer