How to Solve NameError: name 'CrawlerProcess' is not defined -- scrapy

Solution: Import the 'CrawlerProcess' module

To Solve the error, add the following line to the top of your code.

from scrapy.crawler import CrawlerProcess

 

For more information:
Python scrapy CrawlerProcess