Hi there,
I was recently facing some issues connecting my rasa 3.0.4 bot with my Wordpress-Website using the Botfronts Webchat & ngrok. @nik202 helped me to find out, that the error was sanic-related and how to fix it - here.
However, I would like to have different conda environments with different rasa 3.x.x versions to try out which works best with sanic. I apologize beforehand - I am sure it is a pretty basic question but I simply don’t know better and so far I couldn’t find a good explanation…
So, I did the following:
- Created a new directory in the folder where I have my rasa projects
- Changed into that directory and created a new conda environment:
conda create --name newvenv
- Activated that new environment:
conda activate newvenv
- Installed rasa in that new directory:
pip install rasa==3.0.6
(and rasa-sdk…) - to my surprise he found an existing rasa-version, which was then replaced and the new rasa version was installed
- I checked my other virtual environment and of course the rasa version was changed to rasa 3.0.6
Isn’t the whole point of a virtual environment that the packages are installed there and not globally.
What did I missunderstand? Where did I mess up? Could someone help me understand?
Thanks