I have already installed the Rasa and spacy. But when i try to download by below command
python -m spacy download en_core_web_md
On my Mac it says:
/usr/bin/python: No module named spacy
Could you please advise how to achieve it.
I also tried below options but still the same issue:
For macOS:
You can create the virtual environment by opening the command prompt and typing the following code:
$ python3 -m venv --system-site-packages ./venvYou can activate the virtual environment by typing the following code:
$ source ./venv/bin/activateInstalling Rasa and Rasa X:
You can install both Rasa and Rasa X using the following code:
$ pip install rasa-x --extra-index-url https://pypi.rasa.com/simple Use the following code only if you want to install Rasa: $ pip install rasaInstall Rasa NLU and Spacy in the same command prompt:
$ pip install rasa[spacy] $ python -m spacy download en_core_web_md $ python -m spacy link en_core_web_md en