Fix Scrapy ImportError: No module named ‘win32api’ – Python Web Crawler Tutorial

By | July 11, 2019

When you are using scrapy to programming, you may get ImportError: No module named ‘win32api’. In this tutorial, we will introduce a way to fix it.

Activate python 3.5

If you are using python 3.5 environment, you should activate it first.

A Simple Guide to Install Scrapy with Conda for Beginners on Windows – Python Web Crawler Tutorial

activate py3

Install pypiwin32

pip install pypiwin32

Then this error is fixed.

pip install pypiwin32

Leave a Reply