Reputation: 1300
I'm trying to run a file (an executable) in google colab I mounted the drive and everything is ok however whenever i try to run it using :
! 'gdrive/My Drive/path/myfile'
I get this output of the cell:
/bin/bash: 'gdrive/My Drive/path/myfile : Permission denied
any ideas how to overcome the permissions?
Upvotes: 7
Views: 17256
Reputation: 124
you first need to permit that file/folder as: chmod 755 file_name
Upvotes: 11