Installation rasa

I am trying to execute the command "rasa init --no-prompt". in the virtual environment where I have installed rasa as per the documentation The error I am getting is below ‘rasa’ is not recognized as an internal or external command, operable program or batch file. OS - Windows 10 Error shot: image

Hi @kktowin. Maybe this will help: Couldn't use 'rasa command'

If not, what are the exact steps you took to install?

I am trying to create a project in Rasa and below are the steps I have followed. Step 1: Created a Virtual environment bvenv python -m venv --system-site-packages ./bvenv .\bvenv\Scripts\activate

Virtual environment created successfully

Step 2: Tried to install rasa where I have faced an issue as

Could not find a version that satisfies the requirement tensorflow~=1.15.0 (from rasa) (from versions: ) No matching distribution found for tensorflow~=1.15.0 (from rasa) You are using pip version 19.0.3, however version 19.3.1 is available. You should consider upgrading via the ‘python -m pip install --upgrade pip’ command.

Step 3: Updated pip with command as python -m pip install --user --upgrade pip Step 4: Tried again with command as pip install rasa below error appeared again. ERROR: Could not find a version that satisfies the requirement tensorflow~=1.15.0 (from rasa) (from versions: none) ERROR: No matching distribution found for tensorflow~=1.15.0 (from rasa)

Step 4: Gave Pip list

Package                  Version
------------------------ ---------
cachetools               3.1.1
certifi                  2019.9.11
chardet                  3.0.4
cycler                   0.10.0
dialogflow               0.6.0
Django                   2.2.5
google-api-core          1.14.3
google-auth              1.6.3
google-cloud-core        1.0.3
google-cloud-language    1.3.0
google-cloud-storage     1.20.0
google-resumable-media   0.4.1
googleapis-common-protos 1.6.0
grpcio                   1.24.1
idna                     2.8
joblib                   0.14.0
kiwisolver               1.1.0
matplotlib               3.1.1
numpy                    1.17.2
pip                      19.3.1
protobuf                 3.10.0
pyasn1                   0.4.7
pyasn1-modules           0.2.6
pylev                    1.3.0
pyparsing                2.4.2
python-dateutil          2.8.0
pytz                     2019.2
requests                 2.22.0
rsa                      4.0
scikit-learn             0.21.3
scipy                    1.3.1
setuptools               40.8.0
six                      1.12.0
sqlparse                 0.3.0
urllib3                  1.25.6
virtualenv               16.7.5
wheel                    0.33.6

Step 5 Tried to create rasa project rasa init --no-prompt & the error i have got is below

‘rasa’ is not recognized as an internal or external command, operable program or batch file.

You need to successfully install rasa in order to create a rasa project. This error: ERROR: Could not find a version that satisfies the requirement tensorflow~=1.15.0 (from rasa) is preventing you from installing rasa.

You need to install TensforFlow 1.15.0 in your virtual environment. Can you try following the TensorFlow install guide?