4

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
anagha s
  • 323
  • 1
  • 4
  • 15

2 Answers2

2

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
SUBHOJEET
  • 390
  • 1
  • 10
0

Please use below -

conda install rasa-nlu
conda install tensorflow
conda install sklearn-crfsuite
Raj
  • 1,698
  • 4
  • 22
  • 39