Yehdhih ANNA
Yehdhih ANNA

Reputation: 1300

google colab /bin/bash: 'gdrive/My Drive/path/myfile : Permission denied

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

Answers (1)

umesh pant
umesh pant

Reputation: 124

you first need to permit that file/folder as: chmod 755 file_name

Upvotes: 11

Related Questions