I know there are so many question online about this, but I havent found a solution, and what I can add into my problem is that when I check what is install in my enviroment I can see boto3 been installed
I have run the install of boto3 by doing
pip3 install boto3
and also
pip install boto3
However, when I am in Jupyter notebook, I get the error of module not found
I dont understand why when I am using the same enviroment I get this error in Jupyter notebook, how can I fix this?
CodePudding user response:
Jupyter is using a different python binary.
Can you try installing boto3 using %pip install boto3 command from jupyter?
Or install it to your user area, run this from a terminal pip install --user boto3. Restart your jupyter and try importing boto3 again.


