Starter pack

need help. getting this error message on terminal for the starter pack rasa bot.

pip3 install -r requirements.txt ERROR: Could not find a version that satisfies the requirement tensorflow==1.12.0 (from -r requirements.txt (line 11)) (from versions: 1.13.0rc1, 1.13.0rc2, 1.13.1, 2.0.0a0)

ERROR: No matching distribution found for tensorflow==1.12.0 (from -r requirements.txt (line 11))

The solution is: from the terminal on a Mac type in the following (pip3 list | grep tensorflow) find the version of Tensorflow that is installed. Then with your favorite editor/ide open the requirements.txt file, then go to line 11 and proceed to edit line 11 (tensorflow==1.8.0) to the latest version that your Mac responded with earlier. Save the file and vuala! once you run pip3 install -r requirements.txt everything should work just fine.