I have created a sagemaker env and installed all the necessary libraries - pandas, boto3, sagemaker. I can to Environment, select my sagemaker env and open iPython and then import all these three libraries with no errors. But when I “open with Jupiter notebook” and select the “sagemaker” kernel and then type and execute “Import pandas as pd” in a cell I get this error
"ModuleNotFoundError Traceback (most recent call last)
Input In [1], in <cell line: 1>()
----> 1 import pandas as pd
2 import boto3
ModuleNotFoundError: No module named ‘pandas’
Get similar errors for boto3 and sagemaker yet in my Anaconda Navigator environment, I see boto3 and sagemaker under installed column.
I also make sure awscli 2.0 is installed.
I thought those pandas, boto3 and sagemaker libraries would be available when I open a Juypter notebook and start sagemaker kernel? What am I missing here? How do I fix this issue? Thanks.
– vilas