We want to use scrapy in linux machine. We use python 2.7 version and install scrapy 1.4.0 (pip install scrapy). We add import scrapy to .py file. When we run .py file, give error like below:
File "mapper.py", line 5, in <module>
import scrapy
File "/usr/local/lib/python2.7/dist-packages/scrapy/__init__.py", line 27, in <module>
from . import _monkeypatches
File "/usr/local/lib/python2.7/dist-packages/scrapy/_monkeypatches.py", line 2, in <module>
from six.moves import copyreg
ImportError: No module named **six.moves**
We've searched this issue but can not get any answers. How can we solve this issue ? Thanks.