I have found an installation one-liner on the documentation that worked to get both rasa and rasa X installed on a Python virtual environment inside my Windows 10 computer, it was a pip install rasa, followed by an instruction to get rasa X installed also.
I could not find that anymore, and I don’t want to go through using a Docker or Kubernetes approach to get Rasa X.
First create a virtual environment using
pip install virtualenv
Launch virtualenv
In your Command Prompt navigate to your project:
cd your_project
Within your project:
virtualenv env
Activate your virtualenv:
on Windows, virtualenv creates a batch file
\env\Scripts\activate.bat
to activate virtualenv on Windows, activate script is in the Scripts folder :
\path\to\env\Scripts\activate
Example:
C:\Users\'Username'\venv\Scripts\activate.bat