I am new to Scrapy and trying to follow this tutorial (https://www.pythongasm.com/introduction-to-scrapy/) in order to learn about it.
I scraped this page (https://newyork.craigslist.org/d/real-estate/search/rea) using the fetch command, but when i typed view(response) i was given the following error:
>>> view(response)
Start : this command could not be executed due to error: the system could not find the specified file.
In line:1 character:1
+ Start "file:///tmp/tmppjvn5nzf.html"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Start-Process], InvalidOperationException
+ FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
When I inspected file:///tmp/tmppjvn5nzf.html
I saw that the information from the page was scraped, but it wasn't assigned to the response object.
Do you know how can I solve this issue?