Windows 10 中的 Django 频道安装失败

Django channels install failure in Windows 10

这里是环境:

和错误信息:

running build_ext
building 'twisted.test.raiser' extension
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual 
C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools

Command "c:\users\airy\appdata\local\programs\python\python36\python.exe -u -c "import setuptools, 
tokenize;__file__='C:\Users\Airy\AppData\Local\Temp\pip-install-0a1gjuaj\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\Airy\AppData\Local\Temp
\pip-record-k1vjz5aa\install-record.txt --single-version-externally-managed 
--compile" failed with error code 1 in C:\Users\Airy\AppData\Local\Temp\pip-install-0a1gjuaj\twisted\

我已经按照link 的描述安装了构建工具,但还是不行。如果有人解决了,请告诉我如何解决。

从这里下载 twisted link
下载 Twisted‑18.4.0‑cp36‑cp36m‑win32.whl 对我有用,因为我使用的是 Python 3.6。根据您使用的python下载版本。
从给定的 link 下载 Twisted 后,打开文件所在的 cmd 和 运行 pip install Twisted‑18.4.0‑cp36‑cp36m‑win32.whl。 pip 将从该文件安装 Twisted。
如果您在 virtualenv 中执行此操作,请激活 virtualenv,然后在同一过程中安装 Twisted。
之后,您就可以安装频道或其他任何东西了。

如果您按照@rahim.nagori 提到的说明进行操作并遇到@DiptangsuGoswami 提到的问题。只需下载 32 位版本的 twisted 或 64 位(如果您之前使用的是 32 位)。它对我有用!