Error in dealing with rasa developer edition - Rasa CALM - Rasa Community Forum
Error in dealing with rasa developer edition
post by abderrahimayadi on Apr 1, 2024
I got my rasa developer licence key and i wrote it on windows powershell using [System.Environment]::SetEnvironmentVariable(‘RASA_PRO_LICENSE’,‘’) but i’m still getting this error i don’t know why
post by camattin on Apr 1, 2024
Hi,
As our documentation is currently written for this the environment variable will only be set in the powershell terminal where you typed it.
For the environment variable to be persisted the command needs a third argument, which can be either USER or MACHINE.
As a regular user you can set the scope to USER. e.g.:[System.Environment]::SetEnvironmentVariable('RASA_PRO_LICENSE','<your-license-string>','USER')
Then newly opened powershell terminals for the current user would have this environment variable set.
We’ll work on correcting this in our docs.
Thanks for trying out Rasa Pro!
post by abderrahimayadi on Apr 2, 2024
Thanks a lot this worked for me <3
post by camattin on Apr 3, 2024
Glad to hear it! The documentation has been updated as well.