Version: Latest
Licensing
Rasa Pro will look for your license in the env var RASA_PRO_LICENSE
, which must
contain the content of the license key file provided by rasa.
Developer Edition
You can set the RASA_PRO_LICENSE
env var temporarily in your terminal, but it is recommended
to set it persistently so that you don't have to set it every time you run
Rasa Pro.
Bash:
## Temporary
export RASA_PRO_LICENSE=<your-license-string>
## Persistent
echo "export RASA_PRO_LICENSE=<your-license-string>" >> ~/.bashrc
## If you're using a different flavor of bash e.g. Zsh, replace .bashrc with your shell's initialization script e.g. ~/.zshrc
Windows Powershell:
## Temporary
$env: RASA_PRO_LICENSE=<your-license-string>
## Persistent for the current user
[System.Environment]::SetEnvironmentVariable('RASA_PRO_LICENSE','<your-license-string>','USER')
Then you can use the rasa
CLI as usual, for example:
rasa init