I have a whl file for a custom package (not published open source) in a S3 bucket.
I now want to import/install it in my sagemaker instance. https://medium.com/@shadidc/installing-custom-python-package-to-sagemaker-notebook-b7b897f4f655 This link is what I tried to follow, but it did not work for me.
Has anyone tried this before?
Using AWS Sagemaker Jupyter cell
Option 1 :
Quick and dirty, upload the whl file in same workspace as of notebook and just install.
Now, you would need to restart the kernel and then import. You should be able to work through.
Option 2:
Another simple approach is to get the whl file from S3 folder and install.
Below I'm using same file location for both source and target
Now, you would need to restart the kernel and then import. You should be able to work through.