https://aws.amazon.com/sagemaker/
https://aws.amazon.com/sagemaker/pricing/
Select options with VPC setup
Click through options.
https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-comparison.html
https://docs.aws.amazon.com/sagemaker/latest/dg/studio-byoi-create-sdk.html
Create a ECR repo
aws ecr create-repository \
--repository-name smstudio-custom \
--image-scanning-configuration scanOnPush=true
https://github.com/aws-samples/sagemaker-studio-image-build-cli
https://docs.aws.amazon.com/sagemaker/latest/dg/studio-lcc.html
https://github.com/aws-samples/sagemaker-studio-lifecycle-config-examples
https://github.com/aws-samples/amazon-sagemaker-notebook-instance-lifecycle-config-samples
#!/bin/bash
set -e
sudo -u ec2-user -i <<'EOF'
source /home/ec2-user/anaconda3/bin/activate JupyterSystemEnv
jupyter labextension install jupyterlab-plotly@4.14.3 plotlywidget@4.14.3 jupyter-dash
conda deactivate
EOF