Search code examples
python-3.xcondarasa-nlu

Command to install Rasa_nlu using conda


I need to install rasa_nlu for building chatbot in python. Please help with the command to install the same using conda

Tried :

conda install -c conda-forge rasa_nlu

Solution

  • Try installing Rasa Nlu in a virtual environment. Please try below commands

    1. conda create -n myenv python=3.5
    2. conda activate myenv
    3. pip install rasa_nlu