scrapyのインストールに少し時間がかかってしまったので、同じエラーでつまづいた時のために書いておきます。
結論
- 「conda install -c conda-forge scrapy」を実行する
環境
- Windows 10
- Anaconda 1.6.0
- python 3.6
エラーメッセージ
普通にpipでインストールしようとするとエラーが出ます。
pip install scrapy
copying src\twisted\internet\test\fake_CAs\thing2.pem -> build\lib.win-amd64-3.6\twisted\internet\test\fake_CAs
copying src\twisted\mail\test\rfc822.message -> build\lib.win-amd64-3.6\twisted\mail\test
copying src\twisted\python\test\_deprecatetests.py.3only -> build\lib.win-amd64-3.6\twisted\python\test
copying src\twisted\words\im\instancemessenger.glade -> build\lib.win-amd64-3.6\twisted\words\im
copying src\twisted\words\xish\xpathparser.g -> build\lib.win-amd64-3.6\twisted\words\xish
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\****\Anaconda3\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\****\\AppData\\Local\\Temp\\pip-build-_9uutx9s\\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\****\AppData\Local\Temp\pip-gozb9s14-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\****\AppData\Local\Temp\pip-build-_9uutx9s\twisted\
調べたらVisual C++が14.0がインストールされているのにエラーが出てました。
Twistedをインストールしている際に出たエラーのようなので、調べてみると、Windows環境でpythonのversionが3.0以上の場合、Twistedがインストールできないらしいです。