I'm following the Quick Start Guide Jupyter Notebook from AWS in order to make AWS Forecast run with Python.
For the following cell, I replace :
adding my access informations to make it works :
session = boto3.Session(region_name=region, aws_access_key_id=access_key_id, aws_secret_access_key=secret_access_key)
However, I'm still stuck with the following cell :
where I don't know how to solve the current "NoCredentialsError: Unable to locate credentials".
What should I add in the notebook to make it works ?
Finally, I found a way to make it work.
If you are on windows :
open powershell
run
msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi
restart powershell and run
aws configure
Once completed, Jupyter notebook should work.