Step 3: Start Building¶
Now it’s time to build the first AI assistant yourself.
- Install the Rasa Stack on your machine (if you haven’t done that already)
 - Get the Starter Pack
 
a) Install the Rasa Stack on your machine¶
The recommended way to install the Rasa Stack is using pip (make sure to install both Core and NLU):
    
pip install -U rasa_core
    
    
    copied!
  
(Full instructions can be found in the Core Documentation.)
  
    
pip install rasa_nlu[tensorflow]
    
    
    copied!
  
(Full instructions can be found in the NLU Documentation.)b) Get the Starter Pack¶
We've prepared a Starter Pack which has all the files you need to build your first custom AI assistant and a training data set. Also, this YouTube tutorial walks you through all the steps.
    
git clone https://github.com/RasaHQ/starter-pack-rasa-stack.git
cd starter-pack-rasa-stack
    
    
    copied!
  
Now you've got everything you need to start building your first AI assistant. You can find detailed docs for Rasa NLU here and for Rasa Core here.Learn more about how our community of makers from all over the world can help you.