Home > front end >  I can not install "git-lfs" on aws sagemaker notebook instance
I can not install "git-lfs" on aws sagemaker notebook instance

Time:12-29

I Can not run apt to install git-lfs on sagemaker notebook instance. I want to run git commands in my notebook.

CodePudding user response:

use the following commands to install git-lfs

!curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash

!sudo yum install git-lfs -y

!git lfs install

that should make it work

  • Related