How to run Spider

I have written the same code as in the given video…‘Create your first Spider’
I am running this in the Command shell.using Scrapy crawl Spider name
bit it is giving the ouptput LIke ‘Spider is not found’

Hey,
Make sure you have the name property same as the file name

class QuotesSpider(scrapy.Spider):
    name = "quotes_spider"

Without the name property, the scrapy manager will not be able to find your spider.

Also make sure that your project is not called scrapy