Cannot use `get_securities` in Quantopian Finance Lecture

I have downloaded QuantRocket and I am currently going through the quant_finance_lectuers series Lecture04-Introduction-to-Pandas. I am running the code below when I found the error:

from quantrocket.master import get_securities
securities = get_securities(symbols='XOM', fields=['Sid','Symbol','Exchange'], vendors='usstock')
securities

Error:

HTTPError: ('400 Client Error: BAD REQUEST for url: http://houston/master/securities.csv?symbols=XOM&vendors=usstock&fields=Sid&fields=Symbol&fields=Exchange', {'status': 'error', 'msg': 'cannot query inactive vendors: usstock (you must first collect listings from a vendor to activate the vendor)'})

How can I resolve this error? What does it mean that I have to collect listings from a vendor to activate it?

Thank you.

You need to start with the data collection tutorial: Part 1 - Data USStock Sample

Fixed, thank you very much for your help!