Rasa shell is working but rasa x is not working

I have used below commands to set up virtual env on my mac: python3 -m venv --system-site-packages ./rasachatbot

source ./rasachatbot/bin/activate

pip install -U “rasa[spacy]”

python -m spacy download en_core_web_md

python -m spacy link en_core_web_md en

pip install -U “rasa[spacy]”

python -m spacy download en_core_web_md

python -m spacy link en_core_web_md en

pip install rasa-x --extra-index-url https://pypi.rasa.com/simple

rasa init - -no-prompt

As soon as i write rasa x, its throwing me some front end dependencies error as below:

Starting Rasa X in local mode... 
🚀 Building frontend (development mode)... 
make: *** No rule to make target 'install-frontend'.  Stop. 
Failed to install frontend dependencies. Check logs for details. 
Process Process-2: 
Traceback (most recent call last):   
File "/usr/lib/python3.6/multiprocessing/process.py", line 258, in
    _bootstrap
        self.run()   
File "/usr/lib/python3.6/multiprocessing/process.py", line 93, in run
        self._target(*self._args, **self._kwargs)   
File "/home/user/PycharmProjects/Rasa_chatbot/venv/lib/python3.6/site-packages/rasax/community     /api/blueprints/interface.py", line 65, in run_build
        "Frontend install failed! Check the logs for details.",   
File "/home/user/PycharmProjects/Rasa_chatbot/venv/lib/python3.6/site-packages/rasax/community/api/blueprints/interface.py", line 37, in _write_index_html

Sorry about that: it was a bug on our end. :flushed:

It’s fixed as of Rasa-X patch 0.27.2 and you should be good to go as soon as you update! :slight_smile:

Its working now thanks