Hi everyone,
i am using Python3 (3.7.4) installed via Homebrew on macOS 10.14.4
I am following the Getting Started Guide[0] and running into problems while trying to install Rasa.
Running the following command in my ZSH
pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple
returns the following Output[1] which seems fine to me.
After that i want to run
rasa init
but my ZSH tells me
zsh: command not found: rasa
What am i doing wrong?
[0] Getting Started with Rasa
[1] Installation Logfile · GitHub
Ok. Seems to be some PATH configuration error. Switching to normal Terminal.app fixed it for now and i can run all the commands.
erohmensing
(Ella Rohm-Ensing)
3
For what it’s worth, this is at the top of my .zshrc
file:
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
Hey @erohmensing thanks alot for that. I restarted iTerm and it’s now working with ZSH. Funny thing is, i have a reload Alias
alias reload="source ~/.zshrc"
and i am pretty sure, running this did made new commands available in the past. Lessons learned and thanks for you help!