From IDLE, I tried to run a script with the newly installed scrapy 1.0.3.
I am using a script from a friend he worked with (but on Windows I am on a Mac ).
From the scrapy import in the first line, I get this error when starting the program: ImportError: No module named twisted.persisted.styles
The whole script, if useful, points to the following:
Traceback (most recent call last): File "/Users/eliasfong/tutorial/tutorial/spiders/medspider.py", line 1, in <module> import scrapy File "/Library/Python/2.7/site-packages/scrapy/__init__.py", line 27, in <module> from . import _monkeypatches File "/Library/Python/2.7/site-packages/scrapy/_monkeypatches.py", line 20, in <module> import twisted.persisted.styles
Any suggestions for resolving this issue?
efong5
source share