# rasa_space **Repository Path**: amonraknight/rasa_space ## Basic Information - **Project Name**: rasa_space - **Description**: A practice of RASA. - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-27 - **Last Updated**: 2024-01-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rasa_space A practice of rasa NLU. ## Environment Rasa doesn't support Python later than 3.9. It's a good idea to prepare the environment with Anaconda and install Rasa there. I created "RASA_env". All the operations to Rasa can be committed on Anaconda prompt. Choose the environment on Anaconda prompt with this command: ``` conda activate RASA_env ``` ## Install Rasa ``` pip3 install rasa ``` ## How to create a new project. This command can create a new Rasa project. ``` rasa init ``` ## How to run the project. It is recommended to open the api at the start. ``` rasa run --enable-api ```